From 68ec841f3522ff3c84db02f508d1fa2477f5b6bb Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sun, 14 Jun 2020 17:14:40 -0400 Subject: [PATCH] Warn on "Box" in data directory path --- chrome/content/zotero/xpcom/file.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/file.js b/chrome/content/zotero/xpcom/file.js index 3f72884d7c..b53fe14e4b 100644 --- a/chrome/content/zotero/xpcom/file.js +++ b/chrome/content/zotero/xpcom/file.js @@ -1356,7 +1356,9 @@ Zotero.File = new function(){ // pCloud || path.toLowerCase().includes('pcloud') // iCloud Drive (~/Library/Mobile Documents/com~apple~CloudDocs) - || path.includes('Mobile Documents'); + || path.includes('Mobile Documents') + // Box + || path.includes('Box'); };