From ea13f911f1257f596c32e5ba4a676459a7f250fe Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Fri, 20 Sep 2019 11:41:28 -0500 Subject: [PATCH] Change to ignore unsupported accounts instead of crashing --- Frameworks/Account/Account.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/Account/Account.swift b/Frameworks/Account/Account.swift index ee1d93c6a..6d74cd7a2 100644 --- a/Frameworks/Account/Account.swift +++ b/Frameworks/Account/Account.swift @@ -217,7 +217,7 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container, case .feedbin: self.delegate = FeedbinAccountDelegate(dataFolder: dataFolder, transport: transport) default: - fatalError("Only Local and Feedbin accounts are supported") + return nil } self.accountID = accountID