diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-10-09 01:33:31 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-10-09 01:33:31 +0900 |
| commit | 4455a1aa9d96c4c83e4a6fd5d33e7ed876efd51a (patch) | |
| tree | 55505d2d4f854149d9cf17335b0fee7acbb97686 /src/client | |
| parent | :art: (diff) | |
| download | sharkey-4455a1aa9d96c4c83e4a6fd5d33e7ed876efd51a.tar.gz sharkey-4455a1aa9d96c4c83e4a6fd5d33e7ed876efd51a.tar.bz2 sharkey-4455a1aa9d96c4c83e4a6fd5d33e7ed876efd51a.zip | |
Fix bug
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/common/scripts/note-subscriber.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/scripts/note-subscriber.ts b/src/client/app/common/scripts/note-subscriber.ts index 6c994aa9bc..4315f1a023 100644 --- a/src/client/app/common/scripts/note-subscriber.ts +++ b/src/client/app/common/scripts/note-subscriber.ts @@ -20,7 +20,7 @@ export default prop => ({ }, $_ns_target(): any { - return this._ns_isRenote ? this.$_ns_note_.renote : this.$_ns_note_; + return this.$_ns_isRenote ? this.$_ns_note_.renote : this.$_ns_note_; }, }, |