Make sure we never create the file store object twice
This commit is contained in:
@@ -133,8 +133,11 @@ define([
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var initialized = false;
|
||||||
|
|
||||||
var init = function (f, Cryptpad) {
|
var init = function (f, Cryptpad) {
|
||||||
if (!Cryptpad) { return; }
|
if (!Cryptpad || initialized) { return; }
|
||||||
|
initialized = true;
|
||||||
var hash = Cryptpad.getUserHash() || localStorage.FS_hash;
|
var hash = Cryptpad.getUserHash() || localStorage.FS_hash;
|
||||||
var secret = Cryptpad.getSecrets(hash);
|
var secret = Cryptpad.getSecrets(hash);
|
||||||
var listmapConfig = {
|
var listmapConfig = {
|
||||||
|
|||||||
Reference in New Issue
Block a user