mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-13 13:37:31 -07:00
Fix bug
This commit is contained in:
parent
f669491aa6
commit
c32af06fc1
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ export default class MiOS extends EventEmitter {
|
|||
};
|
||||
|
||||
public get instanceName() {
|
||||
return this.meta ? this.meta.data.name : 'Misskey';
|
||||
return this.meta ? (this.meta.data.name || 'Misskey') : 'Misskey';
|
||||
}
|
||||
|
||||
private isMetaFetching = false;
|
||||
|
|
Loading…
Reference in a new issue