diff --git a/src/contentScripts/views/WatchLater/WatchLater.vue b/src/contentScripts/views/WatchLater/WatchLater.vue index 959d01d7..631fed09 100644 --- a/src/contentScripts/views/WatchLater/WatchLater.vue +++ b/src/contentScripts/views/WatchLater/WatchLater.vue @@ -106,7 +106,7 @@ function handleClearAllWatchLater() { csrf: getCSRF(), }).then((res) => { if (res.code === 0) - getAllWatchLaterList() + initData() }).finally(() => { isLoading.value = false }) @@ -124,7 +124,7 @@ function handleRemoveWatchedVideos() { }) .then((res) => { if (res.code === 0) - getAllWatchLaterList() + initData() }) } }