mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-03-16 01:33:43 +08: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())
|
||||
)
|
||||
.catch(e => {
|
||||
showError(e.message);
|
||||
showError(e);
|
||||
throw e;
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue