Skip to content
Snippets Groups Projects
Unverified Commit 146fb23d authored by syuilo's avatar syuilo
Browse files

Fix bug

parent 61455ffe
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment