misc.search: fix error
This commit is contained in:
parent
bf83368762
commit
3d5aedde8e
1 changed files with 1 additions and 1 deletions
|
@ -565,7 +565,7 @@ search.callback = async function (msg, line) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const res = await fetch(librex + "/api.php?q=${query}&p=0&t=0");
|
const res = await fetch(librex + "/api.php?q=${query}&p=0&t=0");
|
||||||
const results = await res.json().splice(0, 5);
|
const results = await res.json().then((arr) => arr.splice(0, 5));
|
||||||
|
|
||||||
let out = `__Results for \`${safeString(line)}\`__\n`;
|
let out = `__Results for \`${safeString(line)}\`__\n`;
|
||||||
for (const result of results) {
|
for (const result of results) {
|
||||||
|
|
Loading…
Reference in a new issue