From 092d5efb3c9e10f342b532b44c5101a26cbf803c Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 29 Oct 2020 11:55:49 -0500 Subject: [PATCH] Allow the credentials to be updated for Feedbin. Fixes #2532 --- Mac/Preferences/Accounts/AccountsFeedbinWindowController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Preferences/Accounts/AccountsFeedbinWindowController.swift b/Mac/Preferences/Accounts/AccountsFeedbinWindowController.swift index e6598cd5a..b022e75b5 100644 --- a/Mac/Preferences/Accounts/AccountsFeedbinWindowController.swift +++ b/Mac/Preferences/Accounts/AccountsFeedbinWindowController.swift @@ -58,7 +58,7 @@ class AccountsFeedbinWindowController: NSWindowController { return } - guard !AccountManager.shared.duplicateServiceAccount(type: .feedbin, username: usernameTextField.stringValue) else { + guard account != nil || !AccountManager.shared.duplicateServiceAccount(type: .feedbin, username: usernameTextField.stringValue) else { self.errorMessageLabel.stringValue = NSLocalizedString("There is already a Feedbin account with that username created.", comment: "Duplicate Error") return }