From e31dec7c443e5728a7151a82d002592866a9fe99 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 1 Sep 2019 10:49:35 -0500 Subject: [PATCH] Call completion handler when there are no feeds associated with the folder being removed. Issue #938 --- Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift b/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift index 9131b703e..ac8aed461 100644 --- a/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift +++ b/Frameworks/Account/Feedbin/FeedbinAccountDelegate.swift @@ -276,6 +276,7 @@ final class FeedbinAccountDelegate: AccountDelegate { // Feedbin uses tags and if at least one feed isn't tagged, then the folder doesn't exist on their system guard folder.hasAtLeastOneFeed() else { account.removeFolder(folder) + completion(.success(())) return }