1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00
This commit is contained in:
Laurent Cozic
2018-02-21 19:20:33 +00:00
parent b9db747b5c
commit e1fd9c6922
4 changed files with 7 additions and 14 deletions

View File

@ -53,7 +53,7 @@ class SyncTargetWebDAV extends BaseSyncTarget {
try {
const result = await fileApi.stat('');
if (!result) throw new Error('Could not access WebDAV directory');
if (!result) throw new Error('WebDAV directory not found: ' + options.path);
output.ok = true;
} catch (error) {
output.errorMessage = error.message;