1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 12:24:12 +01:00

Don't report live bookmark items as bookmarked.

This commit is contained in:
Kris Maglione
2009-10-09 00:17:57 -04:00
parent e62d9f96a5
commit 8b7b290e65
4 changed files with 28 additions and 25 deletions

View File

@@ -1661,7 +1661,7 @@ const liberator = (function () //{{{
{
let obj = {
toString: function () error.toString(),
stack: <>{error.stack.replace(/^/mg, "\t")}</>
stack: <>{(error.stack || Error().stack).replace(/^/mg, "\t")}</>
};
for (let [k, v] in Iterator(error))
{
@@ -1671,7 +1671,7 @@ const liberator = (function () //{{{
liberator.dump(obj);
liberator.dump("");
}
catch (e) {}
catch (e) { window.dump(e) }
},
/**