diff --git a/client/src/app/shared/shared-user-subscription/subscribe-button.component.html b/client/src/app/shared/shared-user-subscription/subscribe-button.component.html index d8699ff69..d08d7f4ed 100644 --- a/client/src/app/shared/shared-user-subscription/subscribe-button.component.html +++ b/client/src/app/shared/shared-user-subscription/subscribe-button.component.html @@ -58,7 +58,7 @@ Subscribe with your local account - 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 180bc0565..7a55a6ffb 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 @@ -168,6 +168,10 @@ export class SubscribeButtonComponent implements OnInit, OnChanges { return Array.from(this.subscribed.values()).every(v => v === true) } + isRemoteSubscribeAvailable () { + return !this.isUserLoggedIn() + } + private getChannelHandler (videoChannel: VideoChannel) { return videoChannel.name + '@' + videoChannel.host }