Fix error at registration

pull/1/head
yflory 2019-02-28 17:09:53 +01:00
parent 17dc4af1aa
commit e98b4176b4
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ define([
}).nThen(function () {
// Migration 8: remove duplicate entries in proxy.FS_hashes (list of migrated anon drives)
var fixDuplicate = function () {
userObject.FS_hashes = Util.deduplicateString(userObject.FS_hashes);
userObject.FS_hashes = Util.deduplicateString(userObject.FS_hashes || []);
};
if (version < 8) {
fixDuplicate();