Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2020-02-02 11:36:59 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-02-06 10:59:49 +0300
commitbb48e872798a15db5bb5f15f6abb6c3179bc541e (patch)
tree7e74eb6deafdfed6519eaa9593aef6ce45ab7bb5 /src
parent2a8b517bb595e4799ee6081220c83fab75ccb90a (diff)
Bump webdav from 2.10.2 to 3.0.0
Bumps [webdav](https://github.com/perry-mitchell/webdav-client) from 2.10.2 to 3.0.0. - [Release notes](https://github.com/perry-mitchell/webdav-client/releases) - [Changelog](https://github.com/perry-mitchell/webdav-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/perry-mitchell/webdav-client/compare/v2.10.2...v3.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r--src/patchedRequest.js2
-rw-r--r--src/services/FileList.js6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/patchedRequest.js b/src/patchedRequest.js
index 41b020aa..5a4ab3ee 100644
--- a/src/patchedRequest.js
+++ b/src/patchedRequest.js
@@ -20,7 +20,7 @@
*
*/
-const request = require('webdav/dist/request')
+const request = require('webdav/dist/node/request')
const oldPrepareRequestOptions = request.prepareRequestOptions
diff --git a/src/services/FileList.js b/src/services/FileList.js
index 82a47887..f4201f84 100644
--- a/src/services/FileList.js
+++ b/src/services/FileList.js
@@ -21,9 +21,9 @@
*/
import { getCurrentUser } from '@nextcloud/auth'
-import { getSingleValue, getValueForKey, parseXML, propsToStat } from 'webdav/dist/interface/dav'
-import { handleResponseCode, processResponsePayload } from 'webdav/dist/response'
-import { normaliseHREF, normalisePath } from 'webdav/dist/url'
+import { getSingleValue, getValueForKey, parseXML, propsToStat } from 'webdav/dist/node/interface/dav'
+import { handleResponseCode, processResponsePayload } from 'webdav/dist/node/response'
+import { normaliseHREF, normalisePath } from 'webdav/dist/node/url'
import client, { remotePath } from './DavClient'
import request from './DavRequest'
import pathPosix from 'path-posix'