diff options
Diffstat (limited to 'server/lib/cache/videos-preview-cache.ts')
-rw-r--r-- | server/lib/cache/videos-preview-cache.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/cache/videos-preview-cache.ts b/server/lib/cache/videos-preview-cache.ts index 776f647a0..0570f51e8 100644 --- a/server/lib/cache/videos-preview-cache.ts +++ b/server/lib/cache/videos-preview-cache.ts | |||
@@ -42,7 +42,7 @@ class VideosPreviewCache { | |||
42 | } | 42 | } |
43 | 43 | ||
44 | private async loadPreviews (key: string) { | 44 | private async loadPreviews (key: string) { |
45 | const video = await db.Video.loadByUUIDAndPopulateAccountAndPodAndTags(key) | 45 | const video = await db.Video.loadByUUIDAndPopulateAccountAndServerAndTags(key) |
46 | if (!video) return undefined | 46 | if (!video) return undefined |
47 | 47 | ||
48 | if (video.isOwned()) return join(CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName()) | 48 | if (video.isOwned()) return join(CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName()) |