aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-08-17 11:24:36 +0200
committerChocobozzz <me@florianbigard.com>2018-08-27 09:41:54 +0200
commit965c4b22d0e4d2f853501e844e6ebbb861bd389d (patch)
tree519574c83ea070968d9561d493bc16ac2e285090 /shared
parent06a05d5f4784a7cbb27aa1188385b5679845dad8 (diff)
downloadPeerTube-965c4b22d0e4d2f853501e844e6ebbb861bd389d.tar.gz
PeerTube-965c4b22d0e4d2f853501e844e6ebbb861bd389d.tar.zst
PeerTube-965c4b22d0e4d2f853501e844e6ebbb861bd389d.zip
Use height instead of width to represent the video resolution
Diffstat (limited to 'shared')
-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 5b2b3adae..ff2cfdbb4 100644
--- a/shared/models/activitypub/objects/common-objects.ts
+++ b/shared/models/activitypub/objects/common-objects.ts
@@ -21,7 +21,7 @@ export 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 href: string 23 href: string
24 width: number 24 height: number
25 25
26 size?: number 26 size?: number
27 fps?: number 27 fps?: number