Fix onLoopException calling showError incorrectly

This commit is contained in:
miruka 2020-10-07 19:38:14 -04:00
parent fd69046528
commit f682e0e261

View File

@ -60,7 +60,7 @@ QtObject {
function onLoopException(message, error, traceback) {
// No need to log these here, the asyncio exception handler does it
const type = py.getattr(py.getattr(error, "__class__"), "__name__")
py.showError(type, traceback, message)
py.showError(type, traceback, "", message)
}
function onModelItemSet(syncId, indexThen, indexNow, changedFields) {