+
Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a banner, an avatar and a description.
Set up my channels
diff --git a/client/src/app/shared/shared-main/misc/channels-setup-message.component.ts b/client/src/app/shared/shared-main/misc/channels-setup-message.component.ts
index b21507a34..702475029 100644
--- a/client/src/app/shared/shared-main/misc/channels-setup-message.component.ts
+++ b/client/src/app/shared/shared-main/misc/channels-setup-message.component.ts
@@ -16,8 +16,8 @@ export class ChannelsSetupMessageComponent implements OnInit {
private authService: AuthService
) {}
- get hasChannelNotConfigured () {
- if (!this.user.videoChannels) return
+ hasChannelNotConfigured () {
+ if (!this.user.videoChannels) return false
return this.user.videoChannels.filter((channel: VideoChannel) => (!channel.avatar || !channel.description)).length > 0
}