diff options
author | Chocobozzz <me@florianbigard.com> | 2023-06-21 10:54:48 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-06-21 10:54:48 +0200 |
commit | ba278fa51dc578835c7fcb3a6eca4cd8cd86c755 (patch) | |
tree | f1146708e95d833855b22ef6af9589ef20164f8c | |
parent | 2c16f5ad5efc11ab47151107d74f2db22af6ff90 (diff) | |
download | PeerTube-ba278fa51dc578835c7fcb3a6eca4cd8cd86c755.tar.gz PeerTube-ba278fa51dc578835c7fcb3a6eca4cd8cd86c755.tar.zst PeerTube-ba278fa51dc578835c7fcb3a6eca4cd8cd86c755.zip |
Fix build
-rw-r--r-- | server/controllers/feeds/video-podcast-feeds.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/feeds/video-podcast-feeds.ts b/server/controllers/feeds/video-podcast-feeds.ts index 5afb51594..bd399580e 100644 --- a/server/controllers/feeds/video-podcast-feeds.ts +++ b/server/controllers/feeds/video-podcast-feeds.ts | |||
@@ -150,7 +150,7 @@ async function generatePodcastItem (options: { | |||
150 | let personImage: string | 150 | let personImage: string |
151 | 151 | ||
152 | if (account.Actor.hasImage(ActorImageType.AVATAR)) { | 152 | if (account.Actor.hasImage(ActorImageType.AVATAR)) { |
153 | const avatar = getBiggestActorImage(account.Actor.Avatars, 'width') | 153 | const avatar = getBiggestActorImage(account.Actor.Avatars) |
154 | personImage = WEBSERVER.URL + avatar.getStaticPath() | 154 | personImage = WEBSERVER.URL + avatar.getStaticPath() |
155 | } | 155 | } |
156 | 156 | ||