1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-08 14:24:16 +02:00

Merge branch 'develop'

This commit is contained in:
syuilo
2019-04-15 21:02:04 +09:00
13 changed files with 123 additions and 16 deletions

View File

@@ -36,7 +36,9 @@ export default Vue.extend({
return this.host === localHost ? `@${this.username}` : `@${this.username}@${toUnicode(this.host)}`;
},
isMe(): boolean {
return this.$store.getters.isSignedIn && this.canonical.toLowerCase() === `@${this.$store.state.i.username}@${toUnicode(localHost)}`.toLowerCase();
return this.$store.getters.isSignedIn && (
`@${this.username}@${toUnicode(this.host)}` === `@${this.$store.state.i.username}@${toUnicode(localHost)}`.toLowerCase()
);
}
},
methods: {