diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-06-17 14:30:07 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-17 14:30:07 +0900 |
| commit | 4e04e5e0c0f428f7bb0b8d2fa1c514e63a0090a5 (patch) | |
| tree | 64746b347b8ecce605996b40fae6e3443d9e64bf /src/models | |
| parent | Merge pull request #1721 from rinsuki/activitypub/support-cw (diff) | |
| parent | Fix #1700 (diff) | |
| download | sharkey-4e04e5e0c0f428f7bb0b8d2fa1c514e63a0090a5.tar.gz sharkey-4e04e5e0c0f428f7bb0b8d2fa1c514e63a0090a5.tar.bz2 sharkey-4e04e5e0c0f428f7bb0b8d2fa1c514e63a0090a5.zip | |
Merge pull request #1722 from rinsuki/fix/1700
Fix #1700
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/note.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/models/note.ts b/src/models/note.ts index 21ec2b3857..83e85f8498 100644 --- a/src/models/note.ts +++ b/src/models/note.ts @@ -343,6 +343,10 @@ export const pack = async ( _note.mediaIds = []; _note.text = null; _note.poll = null; + _note.cw = null; + _note.tags = []; + _note.tagsLower = []; + _note.geo = null; _note.isHidden = true; } |