diff options
author | Chocobozzz <me@florianbigard.com> | 2020-01-29 14:41:42 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-01-29 14:41:42 +0100 |
commit | 9c9a16678354f737144ce2156ce0b7e4faa97eac (patch) | |
tree | 37c3853b891ea84c0b6bfd2eaffb42b1119da7c9 /server/models/video/thumbnail.ts | |
parent | 8ff604c7e300eec5c0b29644292d6399521a1930 (diff) | |
download | PeerTube-9c9a16678354f737144ce2156ce0b7e4faa97eac.tar.gz PeerTube-9c9a16678354f737144ce2156ce0b7e4faa97eac.tar.zst PeerTube-9c9a16678354f737144ce2156ce0b7e4faa97eac.zip |
Fix AP icon URL for imported videos
Diffstat (limited to 'server/models/video/thumbnail.ts')
-rw-r--r-- | server/models/video/thumbnail.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/video/thumbnail.ts b/server/models/video/thumbnail.ts index e68a6711f..3b011b1d2 100644 --- a/server/models/video/thumbnail.ts +++ b/server/models/video/thumbnail.ts | |||
@@ -126,8 +126,8 @@ export class ThumbnailModel extends Model<ThumbnailModel> { | |||
126 | return videoUUID + '.jpg' | 126 | return videoUUID + '.jpg' |
127 | } | 127 | } |
128 | 128 | ||
129 | getFileUrl () { | 129 | getFileUrl (isLocal: boolean) { |
130 | if (this.fileUrl) return this.fileUrl | 130 | if (isLocal === false) return this.fileUrl |
131 | 131 | ||
132 | const staticPath = ThumbnailModel.types[this.type].staticPath | 132 | const staticPath = ThumbnailModel.types[this.type].staticPath |
133 | return WEBSERVER.URL + staticPath + this.filename | 133 | return WEBSERVER.URL + staticPath + this.filename |