Updated to comply with the new storage spec
This commit is contained in:
parent
b7851955b2
commit
ba56f3bf6e
|
@ -10,8 +10,9 @@ emoteBlacklist.prototype.start = function () {
|
||||||
window.ebEnabled = true;
|
window.ebEnabled = true;
|
||||||
var self = this;
|
var self = this;
|
||||||
var em = bdPluginStorage.get("emoteBlacklist", "blacklist");
|
var em = bdPluginStorage.get("emoteBlacklist", "blacklist");
|
||||||
if(em == undefined) return;
|
|
||||||
JSON.parse(em).forEach(function(emote) {
|
if(em === null) return;
|
||||||
|
em.forEach(function(emote) {
|
||||||
self.remove(emote);
|
self.remove(emote);
|
||||||
self.add(emote);
|
self.add(emote);
|
||||||
});
|
});
|
||||||
|
@ -36,8 +37,7 @@ emoteBlacklist.prototype.stop = function () {
|
||||||
emoteBlacklist.prototype.clear = function() {
|
emoteBlacklist.prototype.clear = function() {
|
||||||
var self = this;
|
var self = this;
|
||||||
var em = bdPluginStorage.get("emoteBlacklist", "blacklist");
|
var em = bdPluginStorage.get("emoteBlacklist", "blacklist");
|
||||||
if(em == undefined) return;
|
if(em === null) return;
|
||||||
var em = JSON.parse(em);
|
|
||||||
em.forEach(function(emote) {
|
em.forEach(function(emote) {
|
||||||
self.remove(emote);
|
self.remove(emote);
|
||||||
});
|
});
|
||||||
|
@ -48,8 +48,8 @@ emoteBlacklist.prototype.getSettingsPanel = function () {
|
||||||
var html = '';
|
var html = '';
|
||||||
html += '<h2>Emote Blacklist</2>';
|
html += '<h2>Emote Blacklist</2>';
|
||||||
html += '<textarea id="emoteBlistTa" style="width:100%; min-height:200px;">';
|
html += '<textarea id="emoteBlistTa" style="width:100%; min-height:200px;">';
|
||||||
if(em != undefined) {
|
if(em !== null) {
|
||||||
JSON.parse(em).forEach(function(item) {
|
em.forEach(function(item) {
|
||||||
html += item + "\n";
|
html += item + "\n";
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue