From 3a3af77907dfb49b8bfe251b256e1e94b4565d4d Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Tue, 10 Sep 2024 10:18:08 -0400 Subject: [PATCH] Fix swipe action completion handler not being called --- Tusker/Screens/Explore/ExploreViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Tusker/Screens/Explore/ExploreViewController.swift b/Tusker/Screens/Explore/ExploreViewController.swift index 44f76d95..1534baa7 100644 --- a/Tusker/Screens/Explore/ExploreViewController.swift +++ b/Tusker/Screens/Explore/ExploreViewController.swift @@ -308,6 +308,7 @@ class ExploreViewController: UIViewController, UICollectionViewDelegate, Collect actions.append(UIContextualAction(style: .destructive, title: "Unsave", handler: { _, _, completion in context.delete(existing) try! context.save() + completion(true) })) } if mastodonController.instanceFeatures.canFollowHashtags,