diff --git a/utils/Query.ts b/utils/Query.ts index cb5e8e4..287342e 100644 --- a/utils/Query.ts +++ b/utils/Query.ts @@ -161,9 +161,6 @@ async function getBotList(type: ListType, page = 1, query?: string):Promise { const res = await fetch(url) if(!res.ok) return null - // const buf = await res.buffer() - // const readable = bufferToStream(buf) - // await readable.read() const cache = new StreamCache() return res.body.pipe(cache) }