diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/shared-user-subscription/subscribe-button.component.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-user-subscription/subscribe-button.component.ts b/client/src/app/shared/shared-user-subscription/subscribe-button.component.ts index b918fda06..2261e07dd 100644 --- a/client/src/app/shared/shared-user-subscription/subscribe-button.component.ts +++ b/client/src/app/shared/shared-user-subscription/subscribe-button.component.ts | |||
@@ -164,6 +164,10 @@ export class SubscribeButtonComponent implements OnInit, OnChanges { | |||
164 | return accumulator | 164 | return accumulator |
165 | } | 165 | } |
166 | 166 | ||
167 | isSubscribedToAll () { | ||
168 | return Array.from(this.subscribed.values()).every(v => v === true) | ||
169 | } | ||
170 | |||
167 | private getChannelHandler (videoChannel: VideoChannel) { | 171 | private getChannelHandler (videoChannel: VideoChannel) { |
168 | return videoChannel.name + '@' + videoChannel.host | 172 | return videoChannel.name + '@' + videoChannel.host |
169 | } | 173 | } |