Correct Mendeley data dir path on Windows
This commit is contained in:
parent
d4097d90f6
commit
d4c201fbc0
|
@ -218,7 +218,7 @@ var Zotero_File_Interface = new function() {
|
||||||
path = OS.Path.join(path, 'Library', 'Application Support', 'Mendeley Desktop');
|
path = OS.Path.join(path, 'Library', 'Application Support', 'Mendeley Desktop');
|
||||||
}
|
}
|
||||||
else if (Zotero.isWin) {
|
else if (Zotero.isWin) {
|
||||||
path = OS.Path.join(path, 'AppData', 'Local', 'Mendeley Ltd', 'Desktop');
|
path = OS.Path.join(path, 'AppData', 'Local', 'Mendeley Ltd', 'Mendeley Desktop');
|
||||||
}
|
}
|
||||||
else if (Zotero.isLinux) {
|
else if (Zotero.isLinux) {
|
||||||
path = OS.Path.join(path, '.local', 'share', 'data', 'Mendeley Ltd.', 'Mendeley Desktop');
|
path = OS.Path.join(path, '.local', 'share', 'data', 'Mendeley Ltd.', 'Mendeley Desktop');
|
||||||
|
|
|
@ -1042,7 +1042,7 @@ Zotero_Import_Mendeley.prototype._findExistingFile = function (parentItemID, fil
|
||||||
Zotero_Import_Mendeley.prototype._isDownloadedFile = function (path) {
|
Zotero_Import_Mendeley.prototype._isDownloadedFile = function (path) {
|
||||||
var parentDir = OS.Path.dirname(path);
|
var parentDir = OS.Path.dirname(path);
|
||||||
return parentDir.endsWith(OS.Path.join('Application Support', 'Mendeley Desktop', 'Downloaded'))
|
return parentDir.endsWith(OS.Path.join('Application Support', 'Mendeley Desktop', 'Downloaded'))
|
||||||
|| parentDir.endsWith(OS.Path.join('Local', 'Mendeley Ltd', 'Desktop', 'Downloaded'))
|
|| parentDir.endsWith(OS.Path.join('Local', 'Mendeley Ltd', 'Mendeley Desktop', 'Downloaded'))
|
||||||
|| parentDir.endsWith(OS.Path.join('data', 'Mendeley Ltd.', 'Mendeley Desktop', 'Downloaded'));
|
|| parentDir.endsWith(OS.Path.join('data', 'Mendeley Ltd.', 'Mendeley Desktop', 'Downloaded'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user