diff --git a/Account/Sources/Account/ReaderAPI/ReaderAPIAccountDelegate.swift b/Account/Sources/Account/ReaderAPI/ReaderAPIAccountDelegate.swift index 79a6fdba2..b3ef66162 100644 --- a/Account/Sources/Account/ReaderAPI/ReaderAPIAccountDelegate.swift +++ b/Account/Sources/Account/ReaderAPI/ReaderAPIAccountDelegate.swift @@ -381,12 +381,8 @@ final class ReaderAPIAccountDelegate: AccountDelegate { } func removeWebFeed(for account: Account, with feed: WebFeed, from container: Container, completion: @escaping (Result) -> Void) { - if feed.folderRelationship?.count ?? 0 > 1 { - deleteTagging(for: account, with: feed, from: container, completion: completion) - } else { - account.clearWebFeedMetadata(feed) - deleteSubscription(for: account, with: feed, from: container, completion: completion) - } + account.clearWebFeedMetadata(feed) + deleteSubscription(for: account, with: feed, from: container, completion: completion) } func moveWebFeed(for account: Account, with feed: WebFeed, from: Container, to: Container, completion: @escaping (Result) -> Void) {