1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Electron: Fixes #623: Improved handling of text selection and fixed infinite loop

This commit is contained in:
Laurent Cozic
2018-06-17 02:44:37 +01:00
parent 553b086ba2
commit cf4331c5af
4 changed files with 59 additions and 31 deletions

View File

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