Fix ZFS purging when switching to WebDAV

This commit is contained in:
Dan Stillman 2013-04-15 22:21:54 -04:00
parent bafad27311
commit 5442e2e8a8
2 changed files with 5 additions and 1 deletions

View file

@ -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);

View file

@ -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;