From c597ee3039f8de57d91af00dcd001ac204a468c8 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Mon, 23 Oct 2023 14:07:05 +0200 Subject: [PATCH] Also reset relationships --- .../Scene/Profile/Following/FollowingListViewModel+State.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mastodon/Scene/Profile/Following/FollowingListViewModel+State.swift b/Mastodon/Scene/Profile/Following/FollowingListViewModel+State.swift index 924e9db55..21cdd56ac 100644 --- a/Mastodon/Scene/Profile/Following/FollowingListViewModel+State.swift +++ b/Mastodon/Scene/Profile/Following/FollowingListViewModel+State.swift @@ -56,7 +56,8 @@ extension FollowingListViewModel.State { // reset viewModel.accounts = [] - + viewModel.relationships = [] + stateMachine.enter(Loading.self) } }