Warn if data directory is in iCloud Drive

This commit is contained in:
Dan Stillman 2020-05-26 03:11:43 -04:00
parent b37284dd20
commit b288a278d8

View file

@ -1354,7 +1354,9 @@ Zotero.File = new function(){
// OneDrive
|| path.toLowerCase().includes('onedrive')
// pCloud
|| path.toLowerCase().includes('pcloud');
|| path.toLowerCase().includes('pcloud')
// iCloud Drive (~/Library/Mobile Documents/com~apple~CloudDocs)
|| path.includes('Mobile Documents');
};