Fix unsubscribe button in subscriptions page.

Only affects when unauthenticated.
This commit is contained in:
Kavin 2022-08-01 21:59:49 +05:30
parent c51a3a828e
commit e0cf9e6182
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD

View file

@ -63,16 +63,21 @@ export default {
}
},
handleButton(subscription) {
const channelId = subscription.url.split("/")[2];
if (this.authenticated) {
this.fetchJson(this.authApiUrl() + (subscription.subscribed ? "/unsubscribe" : "/subscribe"), null, {
method: "POST",
body: JSON.stringify({
channelId: subscription.url.split("/")[2],
channelId: channelId,
}),
headers: {
Authorization: this.getAuthToken(),
"Content-Type": "application/json",
},
});
} else {
this.handleLocalSubscriptions(channelId);
}
subscription.subscribed = !subscription.subscribed;
},
exportHandler() {