mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
pad: Fix wrong variable name in global exception handler
This fixes a bug introduced in commit
c845d985e0
.
This commit is contained in:
parent
d25010d5d7
commit
e66e8a4eb2
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ padutils.setupGlobalExceptionHandler = () => {
|
|||
globalExceptionHandler = (e) => {
|
||||
let type;
|
||||
let err;
|
||||
let msg, url, lineno;
|
||||
let msg, url, linenumber;
|
||||
if (e instanceof ErrorEvent) {
|
||||
type = 'Uncaught exception';
|
||||
err = e.error || {};
|
||||
|
|
Loading…
Reference in a new issue