diff --git a/src/components/WatchVideo.vue b/src/components/WatchVideo.vue index 333b7e49..58639680 100644 --- a/src/components/WatchVideo.vue +++ b/src/components/WatchVideo.vue @@ -325,6 +325,18 @@ export default { }, }); this.subscribed = !this.subscribed; + + var notifText; + if (this.subscribed) { + notifText = this.$t("notifications.notif_subscribe"); + } else { + notifText = this.$t("notifications.notif_unsubscribe"); + } + + this.$notify({ + text: notifText, + type: "success", + }); }, handleScroll() { if (this.loading || !this.comments || !this.comments.nextpage) return;