From 4130766bb9f0eb6208bef9f05e54d1d3a16c321d Mon Sep 17 00:00:00 2001
From: Tamara Steinwender <tamara.steinwender@tugraz.at>
Date: Wed, 12 Aug 2020 13:42:28 +0200
Subject: [PATCH] Error handling when webdavclient is broken

---
 .../src/dbp-nextcloud-file-picker.js           | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/packages/file-handling/src/dbp-nextcloud-file-picker.js b/packages/file-handling/src/dbp-nextcloud-file-picker.js
index ce39563c..dab1cd12 100644
--- a/packages/file-handling/src/dbp-nextcloud-file-picker.js
+++ b/packages/file-handling/src/dbp-nextcloud-file-picker.js
@@ -319,7 +319,6 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
                     "  </d:prop>" +
                     "</d:propfind>"})
             .then(contents => {
-                //console.log("contents", contents);
                 this.loading = false;
                 this.statusText = "";
                 this.tabulatorTable.setData(contents.data);
@@ -336,16 +335,17 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
                     this.loading = false;
                     this.statusText = error.message;
                     this.isPickerActive = false;
-                }
-
-                this.tabulatorTable.clearData();
-                this.webDavClient = null;
-                // TODO Ãœbersetzung
-                let reloadButton = html`Something went wrong. Please reload <button class="button"
+                    this.tabulatorTable.clearData();
+                    this.webDavClient = null;
+                    // TODO Ãœbersetzung
+                    let reloadButton = html`Something went wrong. Please reload <button class="button"
                                 title="${i18n.t('nextcloud-file-picker.refresh-nextcloud-file-picker')}"
                                 @click="${async () => { this.openFilePicker(); } }"><dbp-icon name="reload"></button>`;
-                this.loading = false;
-                this.statusText = reloadButton;
+                    this.loading = false;
+                    this.statusText = reloadButton;
+                }
+
+
         });
     }
 
-- 
GitLab