From 073fddcc28921113de946722a8f11ddcaac7a0d4 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 11 Sep 2018 20:41:49 +0200 Subject: [PATCH] fix trashbin infoparsers interfering with other dav clients Signed-off-by: Robin Appelman --- core/js/files/client.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/js/files/client.js b/core/js/files/client.js index 714fcaa647..aa450df177 100644 --- a/core/js/files/client.js +++ b/core/js/files/client.js @@ -61,6 +61,7 @@ } this._client = new dav.Client(clientOptions); this._client.xhrProvider = _.bind(this._xhrProvider, this); + this._fileInfoParsers = []; }; Client.NS_OWNCLOUD = 'http://owncloud.org/ns';