diff --git a/config/booru.ts b/config/booru.ts index a71f64c..d4162c7 100644 --- a/config/booru.ts +++ b/config/booru.ts @@ -18,9 +18,9 @@ export const booruConfig: IBooruConfigMap = { autocomplete: "ac.rule34.xxx/autocomplete.php?q=", }, "realbooru.com": { - enabled: false, + enabled: true, name: "realbooru.com", - aliases: ["realbooru", "rb", "real34"], + aliases: ["realbooru", "rb", "real34", "realb"], endpoint: "realbooru.com", functions: booruDefaults, autocomplete: "realbooru.com/index.php?page=autocomplete&term=", diff --git a/src/routes/[booru]/random.ts b/src/routes/[booru]/random.ts index a688488..a2f482a 100644 --- a/src/routes/[booru]/random.ts +++ b/src/routes/[booru]/random.ts @@ -281,12 +281,16 @@ async function handler( const parsedData: Data = data as Data; let posts: BooruPost[] = []; - if (parsedData.post) { - posts = [parsedData.post]; - } else if (parsedData.posts) { - posts = parsedData.posts; + if (booruConfig.name === "realbooru.com") { + posts = parsedData.post || []; } 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;