More case sentivity fixes
This commit is contained in:
parent
713e9e93d3
commit
143602a729
|
@ -62,7 +62,7 @@ bdStorage.get = function(i, m, pn) {
|
||||||
bdStorage.set = function(i, v, m, pn) {
|
bdStorage.set = function(i, v, m, pn) {
|
||||||
if(m) {
|
if(m) {
|
||||||
bdStorage.data[i] = v;
|
bdStorage.data[i] = v;
|
||||||
_fs.writeFileSync(_cfg.dataPath + "/bdstorage.json", JSON.stringify(bdStorage.data, null, 4));
|
_fs.writeFileSync(_cfg.dataPath + "/bdStorage.json", JSON.stringify(bdStorage.data, null, 4));
|
||||||
} else {
|
} else {
|
||||||
if(bdPluginStorage[pn] === undefined) bdPluginStorage[pn] = {};
|
if(bdPluginStorage[pn] === undefined) bdPluginStorage[pn] = {};
|
||||||
bdPluginStorage[pn][i] = v;
|
bdPluginStorage[pn][i] = v;
|
||||||
|
|
Loading…
Reference in New Issue