mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-22 17:10:10 +00:00
accounts: allow yes/no in search
This commit is contained in:
parent
94e3c13b3e
commit
c988239fa8
@ -615,7 +615,7 @@ export class accountsList {
|
|||||||
if (word.includes(":")) {
|
if (word.includes(":")) {
|
||||||
const querySplit = word.split(":")
|
const querySplit = word.split(":")
|
||||||
let state = false;
|
let state = false;
|
||||||
if (querySplit[1] == "true") {
|
if (querySplit[1] == "true" || querySplit[1] == "yes") {
|
||||||
state = true;
|
state = true;
|
||||||
}
|
}
|
||||||
for (let id in this._users) {
|
for (let id in this._users) {
|
||||||
|
Loading…
Reference in New Issue
Block a user