mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 09:27:03 +03:00
Just showError(e) instead of showError(e.message)
This commit is contained in:
parent
9383277e64
commit
d997a2b679
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ window.rl = {
|
||||||
: doc.addEventListener('readystatechange', () => 'complete' == doc.readyState && cb())
|
: doc.addEventListener('readystatechange', () => 'complete' == doc.readyState && cb())
|
||||||
)
|
)
|
||||||
.catch(e => {
|
.catch(e => {
|
||||||
showError(e.message);
|
showError(e);
|
||||||
throw e;
|
throw e;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue