mirror of
https://github.com/hrfee/jfa-go.git
synced 2026-01-18 16:47:42 +01:00
accounts: allow yes/no in search
This commit is contained in:
@@ -615,7 +615,7 @@ export class accountsList {
|
||||
if (word.includes(":")) {
|
||||
const querySplit = word.split(":")
|
||||
let state = false;
|
||||
if (querySplit[1] == "true") {
|
||||
if (querySplit[1] == "true" || querySplit[1] == "yes") {
|
||||
state = true;
|
||||
}
|
||||
for (let id in this._users) {
|
||||
|
||||
Reference in New Issue
Block a user