mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-24 01:33:07 +02:00
Fix bug
This commit is contained in:
parent
61455ffe29
commit
146fb23d7d
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ export default class MiOS extends EventEmitter {
|
||||||
};
|
};
|
||||||
|
|
||||||
public get instanceName() {
|
public get instanceName() {
|
||||||
return this.meta ? this.meta.data.name : 'Misskey';
|
return this.meta ? (this.meta.data.name || 'Misskey') : 'Misskey';
|
||||||
}
|
}
|
||||||
|
|
||||||
private isMetaFetching = false;
|
private isMetaFetching = false;
|
||||||
|
|
Loading…
Reference in a new issue