aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-01-12 15:35:30 +0100
committerChocobozzz <me@florianbigard.com>2018-01-12 15:35:30 +0100
commit9fb3abfdac5c4bffe9992a457e5210d3aa743952 (patch)
treeb2feaec75e890ea842dcb52b9760863cd64481fb /shared/models/activitypub
parentbd377530836474fa2a4404bd3e8bdd15f1b9ccc0 (diff)
downloadPeerTube-9fb3abfdac5c4bffe9992a457e5210d3aa743952.tar.gz
PeerTube-9fb3abfdac5c4bffe9992a457e5210d3aa743952.tar.zst
PeerTube-9fb3abfdac5c4bffe9992a457e5210d3aa743952.zip
Fix communication with mastodon
Diffstat (limited to 'shared/models/activitypub')
-rw-r--r--shared/models/activitypub/objects/common-objects.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/models/activitypub/objects/common-objects.ts b/shared/models/activitypub/objects/common-objects.ts
index aef728b82..3127d0565 100644
--- a/shared/models/activitypub/objects/common-objects.ts
+++ b/shared/models/activitypub/objects/common-objects.ts
@@ -20,7 +20,7 @@ export interface ActivityIconObject {
20export interface ActivityUrlObject { 20export interface ActivityUrlObject {
21 type: 'Link' 21 type: 'Link'
22 mimeType: 'video/mp4' | 'video/webm' | 'application/x-bittorrent' | 'application/x-bittorrent;x-scheme-handler/magnet' 22 mimeType: 'video/mp4' | 'video/webm' | 'application/x-bittorrent' | 'application/x-bittorrent;x-scheme-handler/magnet'
23 url: string 23 href: string
24 width: number 24 width: number
25 size?: number 25 size?: number
26} 26}