From 90cdc1ec3b7a66bf14e58cba24d49f3abe54fa7e Mon Sep 17 00:00:00 2001 From: Joscha Legewie Date: Sun, 23 Jul 2023 20:46:20 -0400 Subject: [PATCH] Fix repeated call to zotero7transition on startup --- chrome/content/zotfile/zotfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotfile/zotfile.js b/chrome/content/zotfile/zotfile.js index d115f9ea..c9cb947c 100644 --- a/chrome/content/zotfile/zotfile.js +++ b/chrome/content/zotfile/zotfile.js @@ -85,7 +85,7 @@ Zotero.ZotFile = new function() { // Transition to Zotero 7 if(this.getPref('zotero7transition')) { this.zotero7transition(true); - this.getPref('zotero7transition', false) + this.setPref('zotero7transition', false); } // determine folder seperator depending on OS this.folderSep = Zotero.isWin ? '\\' : '/';