Update setting descriptions for black/whitelist

This commit is contained in:
Dominik Reh
2023-01-12 14:45:16 +01:00
parent 849e346924
commit 52593e6ac8
2 changed files with 3 additions and 3 deletions

View File

@@ -267,7 +267,7 @@ function isEnabled() {
.map(x => x.trim())
.filter(x => x.length > 0);
if (CFG.activeIn.modelListMode === "blacklist") {
if (CFG.activeIn.modelListMode.toLowerCase() === "blacklist") {
// If the current model is in the blacklist, disable
return !modelList.includes(currentModelHash);
} else {