diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-13 05:21:55 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-13 05:21:55 +0900 |
| commit | ce27b36fd04d43dd0852e5d066d50d3236381348 (patch) | |
| tree | 8d64062797933107109995ff5fbb25267f174cdd /src/client/app/desktop/views | |
| parent | 2.38.1 (diff) | |
| download | misskey-ce27b36fd04d43dd0852e5d066d50d3236381348.tar.gz misskey-ce27b36fd04d43dd0852e5d066d50d3236381348.tar.bz2 misskey-ce27b36fd04d43dd0852e5d066d50d3236381348.zip | |
Fix bug
Diffstat (limited to 'src/client/app/desktop/views')
| -rw-r--r-- | src/client/app/desktop/views/components/post-form.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/desktop/views/components/post-form.vue b/src/client/app/desktop/views/components/post-form.vue index 7b2adfe707..a0670a084e 100644 --- a/src/client/app/desktop/views/components/post-form.vue +++ b/src/client/app/desktop/views/components/post-form.vue @@ -50,6 +50,7 @@ import * as XDraggable from 'vuedraggable'; import getKao from '../../../common/scripts/get-kao'; import MkVisibilityChooser from '../../../common/views/components/visibility-chooser.vue'; import parse from '../../../../../text/parse'; +import { host } from '../../../config'; export default Vue.extend({ components: { @@ -129,6 +130,7 @@ export default Vue.extend({ // 自分は除外 if (this.$store.state.i.username == x.username && x.host == null) return; + if (this.$store.state.i.username == x.username && x.host == host) return; // 重複は除外 if (this.text.indexOf(`${mention} `) != -1) return; |