enable reab, fix realb,
This commit is contained in:
parent
892c67f5c5
commit
b8947e610d
2 changed files with 11 additions and 7 deletions
|
@ -18,9 +18,9 @@ export const booruConfig: IBooruConfigMap = {
|
||||||
autocomplete: "ac.rule34.xxx/autocomplete.php?q=",
|
autocomplete: "ac.rule34.xxx/autocomplete.php?q=",
|
||||||
},
|
},
|
||||||
"realbooru.com": {
|
"realbooru.com": {
|
||||||
enabled: false,
|
enabled: true,
|
||||||
name: "realbooru.com",
|
name: "realbooru.com",
|
||||||
aliases: ["realbooru", "rb", "real34"],
|
aliases: ["realbooru", "rb", "real34", "realb"],
|
||||||
endpoint: "realbooru.com",
|
endpoint: "realbooru.com",
|
||||||
functions: booruDefaults,
|
functions: booruDefaults,
|
||||||
autocomplete: "realbooru.com/index.php?page=autocomplete&term=",
|
autocomplete: "realbooru.com/index.php?page=autocomplete&term=",
|
||||||
|
|
|
@ -281,12 +281,16 @@ async function handler(
|
||||||
const parsedData: Data = data as Data;
|
const parsedData: Data = data as Data;
|
||||||
|
|
||||||
let posts: BooruPost[] = [];
|
let posts: BooruPost[] = [];
|
||||||
if (parsedData.post) {
|
if (booruConfig.name === "realbooru.com") {
|
||||||
posts = [parsedData.post];
|
posts = parsedData.post || [];
|
||||||
} else if (parsedData.posts) {
|
|
||||||
posts = parsedData.posts;
|
|
||||||
} else {
|
} else {
|
||||||
posts = Array.isArray(data) ? (data as BooruPost[]) : [];
|
if (parsedData.post) {
|
||||||
|
posts = [parsedData.post];
|
||||||
|
} else if (parsedData.posts) {
|
||||||
|
posts = parsedData.posts;
|
||||||
|
} else {
|
||||||
|
posts = Array.isArray(data) ? (data as BooruPost[]) : [];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (posts.length === 0) continue;
|
if (posts.length === 0) continue;
|
||||||
|
|
Loading…
Add table
Reference in a new issue