mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 02:55:55 +00:00
refactor error reporting to AppBase; keep exception_error() for now as a shim
This commit is contained in:
@@ -67,7 +67,7 @@ define(["dojo/_base/declare"], function (declare) {
|
||||
parentNode.appendChild(li);
|
||||
}
|
||||
} catch (e) {
|
||||
exception_error(e);
|
||||
App.Error.report(e);
|
||||
}
|
||||
});
|
||||
},
|
||||
@@ -117,7 +117,7 @@ define(["dojo/_base/declare"], function (declare) {
|
||||
}
|
||||
|
||||
} catch (e) {
|
||||
exception_error(e);
|
||||
App.Error.report(e);
|
||||
}
|
||||
});
|
||||
},
|
||||
@@ -238,7 +238,7 @@ define(["dojo/_base/declare"], function (declare) {
|
||||
console.log("getTestResults: dialog closed, bailing out.");
|
||||
}
|
||||
} catch (e) {
|
||||
exception_error(e);
|
||||
App.Error.report(e);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user