Browse Source

fix

Signed-off-by: marinofaggiana <marino.faggiana@nextcloud.com>
marinofaggiana 2 years ago
parent
commit
9bfb5a4eaf
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Widget/Nextcloud/NextcloudData.swift

+ 2 - 1
Widget/Nextcloud/NextcloudData.swift

@@ -48,11 +48,12 @@ let nextcloudDatasTest: [NextcloudData] = [
 
 func readNextcloudData(completion: @escaping (_ NextcloudDatas: [NextcloudData], _ isPlaceholder: Bool, _ footerText: String) -> Void) {
 
-    guard let account = NCManageDatabase.shared.getActiveAccount(), let password = CCUtility.getPassword(account.account) else {
+    guard let account = NCManageDatabase.shared.getActiveAccount() else {
         return completion(nextcloudDatasTest, true, NSLocalizedString("_no_active_account_", value: "No account found", comment: ""))
     }
 
     // NETWORKING
+    let password = CCUtility.getPassword(account.account)!
     NCCommunicationCommon.shared.setup(
         account: account.account,
         user: account.user,