1
0
Fork 0

Fix removing from white/black lists

master
thyttan 2022-11-12 12:47:21 +01:00 committed by GitHub
parent aa7c38a08c
commit 60254e5839
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,7 @@
appList.forEach((app) => {
if (settings.whiteList.indexOf(app.src) >= 0) {
let index = settings.whiteList.indexOf(app.src);
whiteListMenu[app.name] = () => {
E.showPrompt("Delete from WL?", {
title: "Delete from WL?",
@ -101,6 +102,7 @@
appList.forEach((app) => {
if (settings.blackList.indexOf(app.src) >= 0) {
let index = settings.whiteList.indexOf(app.src);
blackListMenu[app.name] = () => {
E.showPrompt("Delete from BL?", {
title: "Delete from BL?",