mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-23 18:53:36 +02:00
Merge branch 'master' of github.com:laurent22/joplin
This commit is contained in:
commit
423d880b92
@ -43,6 +43,9 @@ class FileApiDriverWebDav {
|
|||||||
const propStat = this.api().arrayFromJson(resource, ['d:propstat']);
|
const propStat = this.api().arrayFromJson(resource, ['d:propstat']);
|
||||||
if (!Array.isArray(propStat)) throw new Error('Invalid WebDAV resource format: ' + JSON.stringify(resource));
|
if (!Array.isArray(propStat)) throw new Error('Invalid WebDAV resource format: ' + JSON.stringify(resource));
|
||||||
|
|
||||||
|
const httpStatusLine = this.api().stringFromJson(resource, ['d:propstat',0,'d:status', 0]);
|
||||||
|
if ( typeof httpStatusLine === 'string' && httpStatusLine.indexOf('404') >= 0 ) throw new JoplinError(resource, 404);
|
||||||
|
|
||||||
const resourceTypes = this.api().resourcePropByName(resource, 'array', 'd:resourcetype');
|
const resourceTypes = this.api().resourcePropByName(resource, 'array', 'd:resourcetype');
|
||||||
let isDir = false;
|
let isDir = false;
|
||||||
if (Array.isArray(resourceTypes)) {
|
if (Array.isArray(resourceTypes)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user