Skip to content

Commit

Permalink
🚑 Fix crash on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebclem committed Nov 17, 2020
1 parent 8c03b24 commit c4f5b00
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ class WebdavTools {
status.message = `Fail to upload snapshot to nextcloud (${err}) !`;
statusTools.setStatus(status);
logger.error(status.message);
logger.error(err?.stack);
logger.error(err.stack);
reject(status.message);
});
});
Expand Down Expand Up @@ -336,7 +336,7 @@ class WebdavTools {
status.error_code = 7;
statusTools.setStatus(status);
logger.error(status.message);
logger.error(err?.stack);
logger.error(err.stack);
reject(err.message);
});
});
Expand Down

0 comments on commit c4f5b00

Please sign in to comment.