From 0dbe31cf31b3f9c4610a903fab5e9cf51b3d8e74 Mon Sep 17 00:00:00 2001 From: eris Date: Wed, 31 Aug 2022 01:50:38 +0000 Subject: [PATCH] Fix reply timeline fetching --- src/components/user_profile/user_profile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/user_profile/user_profile.js b/src/components/user_profile/user_profile.js index 28959e57..6b935749 100644 --- a/src/components/user_profile/user_profile.js +++ b/src/components/user_profile/user_profile.js @@ -142,6 +142,7 @@ const UserProfile = { }, stopFetching () { this.$store.dispatch('stopFetchingTimeline', 'user') + this.$store.dispatch('stopFetchingTimeline', 'replies') this.$store.dispatch('stopFetchingTimeline', 'favorites') this.$store.dispatch('stopFetchingTimeline', 'media') },