Fix ZFS purging when switching to WebDAV
This commit is contained in:
parent
bafad27311
commit
5442e2e8a8
2 changed files with 5 additions and 1 deletions
|
@ -72,7 +72,7 @@ Zotero_Preferences.Sync = {
|
|||
}
|
||||
|
||||
if (oldProtocol == 'zotero' && protocol == 'webdav') {
|
||||
var sql = "SELECT COUNT(*) FROM version WHERE schema='storage_zfs'";
|
||||
var sql = "SELECT COUNT(*) FROM version WHERE schema LIKE 'storage_zfs%'";
|
||||
if (Zotero.DB.valueQuery(sql)) {
|
||||
var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
|
||||
.getService(Components.interfaces.nsIPromptService);
|
||||
|
|
|
@ -1043,6 +1043,10 @@ Zotero.Sync.Storage.ZFS = (function () {
|
|||
*/
|
||||
obj._purgeDeletedStorageFiles = function () {
|
||||
return Q.fcall(function () {
|
||||
// Cache the credentials at the root
|
||||
return self._cacheCredentials();
|
||||
}.bind(this))
|
||||
then(function () {
|
||||
// If we don't have a user id we've never synced and don't need to bother
|
||||
if (!Zotero.userID) {
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue