www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 4aa3e77aebd8b51f69bbec833053d5e6d740fc4d
parent a688d9ab00fbb6ae9c99eac33e1a9a635d5f8298
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 14 Nov 2013 02:31:30 -0500

Yet more relations purging error debugging

Diffstat:
Mchrome/content/zotero/xpcom/data/relations.js | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/chrome/content/zotero/xpcom/data/relations.js b/chrome/content/zotero/xpcom/data/relations.js @@ -232,6 +232,9 @@ Zotero.Relations = new function () { try { Zotero.DB.beginTransaction(); for each(var uri in uris) { + Zotero.debug('==='); + Zotero.debug(uri); + // Skip URIs that don't begin with the default prefix, // since they don't correspond to local items if (uri.indexOf(prefix) == -1) { @@ -248,6 +251,7 @@ Zotero.Relations = new function () { } catch (e) { Zotero.debug(e); + Zotero.debug(uris); var rels = Zotero.DB.query("SELECT * FROM relations"); for each (let rel in rels) { Zotero.debug(rel);