1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-14 23:26:58 +02:00

VArious fixes

This commit is contained in:
Laurent Cozic
2017-07-15 17:14:15 +01:00
parent aabc58224a
commit 0e05567706
4 changed files with 10 additions and 10 deletions

View File

@@ -252,7 +252,7 @@ class OneDriveApi {
if (!response.ok) {
this.setAuth(null);
let msg = await response.text();
throw new Error(msg);
throw new Error(msg + ': TOKEN: ' + this.auth_);
}
let auth = await response.json();