From 7819dcd99f4fe10fc3421df92bea324dba426b57 Mon Sep 17 00:00:00 2001 From: ChunkyProgrammer <78101139+ChunkyProgrammer@users.noreply.github.com> Date: Wed, 19 Oct 2022 03:50:09 -0400 Subject: [PATCH] change `this.showToast` to `showToast` (#2746) --- src/renderer/views/Subscriptions/Subscriptions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/views/Subscriptions/Subscriptions.js b/src/renderer/views/Subscriptions/Subscriptions.js index 6df2b3fb..6e1b2206 100644 --- a/src/renderer/views/Subscriptions/Subscriptions.js +++ b/src/renderer/views/Subscriptions/Subscriptions.js @@ -321,7 +321,7 @@ export default Vue.extend({ return this.getChannelVideosLocalScraper(channel, failedAttempts + 1) case 1: if (this.backendFallback) { - this.showToast(this.$t('Falling back to Invidious API')) + showToast(this.$t('Falling back to Invidious API')) return this.getChannelVideosInvidiousRSS(channel, failedAttempts + 1) } else { return [] @@ -398,7 +398,7 @@ export default Vue.extend({ return this.getChannelVideosInvidiousScraper(channel, failedAttempts + 1) case 1: if (this.backendFallback) { - this.showToast(this.$t('Falling back to the local API')) + showToast(this.$t('Falling back to the local API')) return this.getChannelVideosLocalRSS(channel, failedAttempts + 1) } else { return []