mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-06 20:44:11 +01:00
Stop unexpectedly going into INSERT mode on Facebook.
This commit is contained in:
@@ -977,9 +977,14 @@ Class.prototype = {
|
||||
callback.call(this);
|
||||
}
|
||||
catch (e) {
|
||||
util.dump("Error invoking timer callback registered at " +
|
||||
[frame.filename, frame.lineNumber, ""].join(":"));
|
||||
Cu.reportError(e);
|
||||
try {
|
||||
util.dump("Error invoking timer callback registered at " +
|
||||
[frame.filename, frame.lineNumber, ""].join(":"));
|
||||
util.reportError(e);
|
||||
}
|
||||
catch (e) {
|
||||
Cu.reportError(e);
|
||||
}
|
||||
}
|
||||
};
|
||||
let frame = Components.stack.caller;
|
||||
|
||||
Reference in New Issue
Block a user