diff options
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | server/models/video/video.ts | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e5f7f8f2..eadbb1cce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -1,5 +1,13 @@ | |||
1 | # Changelog | 1 | # Changelog |
2 | 2 | ||
3 | |||
4 | ## v0.0.25-alpha | ||
5 | |||
6 | ### Bug fixes | ||
7 | |||
8 | * Fix avatars on video watch page | ||
9 | |||
10 | |||
3 | ## v0.0.24-alpha | 11 | ## v0.0.24-alpha |
4 | 12 | ||
5 | ### Features | 13 | ### Features |
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index d748e81bd..aa1878caa 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -68,6 +68,7 @@ import { sendDeleteVideo } from '../../lib/activitypub/send' | |||
68 | import { AccountModel } from '../account/account' | 68 | import { AccountModel } from '../account/account' |
69 | import { AccountVideoRateModel } from '../account/account-video-rate' | 69 | import { AccountVideoRateModel } from '../account/account-video-rate' |
70 | import { ActorModel } from '../activitypub/actor' | 70 | import { ActorModel } from '../activitypub/actor' |
71 | import { AvatarModel } from '../avatar/avatar' | ||
71 | import { ServerModel } from '../server/server' | 72 | import { ServerModel } from '../server/server' |
72 | import { getSort, throwIfNotValid } from '../utils' | 73 | import { getSort, throwIfNotValid } from '../utils' |
73 | import { TagModel } from './tag' | 74 | import { TagModel } from './tag' |
@@ -175,6 +176,10 @@ enum ScopeNames { | |||
175 | attributes: [ 'host' ], | 176 | attributes: [ 'host' ], |
176 | model: () => ServerModel.unscoped(), | 177 | model: () => ServerModel.unscoped(), |
177 | required: false | 178 | required: false |
179 | }, | ||
180 | { | ||
181 | model: () => AvatarModel.unscoped(), | ||
182 | required: false | ||
178 | } | 183 | } |
179 | ] | 184 | ] |
180 | } | 185 | } |