diff options
author | Julien Maulny <julien.maulny@protonmail.com> | 2019-12-03 21:48:31 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-12-04 09:36:45 +0100 |
commit | b5206dfc455c119b0dcb897bd7144be6ea4d999d (patch) | |
tree | d79387081b80c0bbee38beee00f6560a599a99a9 /shared/models/activitypub | |
parent | 69222afac8f8c41d90295b33f0695bbff352851e (diff) | |
download | PeerTube-b5206dfc455c119b0dcb897bd7144be6ea4d999d.tar.gz PeerTube-b5206dfc455c119b0dcb897bd7144be6ea4d999d.tar.zst PeerTube-b5206dfc455c119b0dcb897bd7144be6ea4d999d.zip |
Fix retrieving of deleted comments when subscribing to a new instance
Diffstat (limited to 'shared/models/activitypub')
-rw-r--r-- | shared/models/activitypub/objects/common-objects.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/models/activitypub/objects/common-objects.ts b/shared/models/activitypub/objects/common-objects.ts index df287d570..de1116ab3 100644 --- a/shared/models/activitypub/objects/common-objects.ts +++ b/shared/models/activitypub/objects/common-objects.ts | |||
@@ -93,9 +93,11 @@ export interface ActivityPubAttributedTo { | |||
93 | export interface ActivityTombstoneObject { | 93 | export interface ActivityTombstoneObject { |
94 | '@context'?: any | 94 | '@context'?: any |
95 | id: string | 95 | id: string |
96 | url?: string | ||
96 | type: 'Tombstone' | 97 | type: 'Tombstone' |
97 | name?: string | 98 | name?: string |
98 | formerType?: string | 99 | formerType?: string |
100 | inReplyTo?: string | ||
99 | published: string | 101 | published: string |
100 | updated: string | 102 | updated: string |
101 | deleted: string | 103 | deleted: string |