1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 02:27:58 +01:00

Fix some noise on FF 3.6.

This commit is contained in:
Kris Maglione
2010-09-22 15:33:25 -04:00
parent a37167b95a
commit a7ef6e47c7
2 changed files with 8 additions and 11 deletions

View File

@@ -20,8 +20,8 @@
return;
}
catch (e) {
if (e !== "Error opening input stream (invalid filename?)") {
dump("dactyl: Trying: " + (base + script + ".js") + ": " + e + "\n" + e.stack);
if (typeof e !== "string") {
dump("dactyl: Trying: " + (base + script + ".js") + ": " + e + "\n" + e.stack + "\n");
Components.utils.reportError(e);
}
}