remove debug print (AGAIN)

This commit is contained in:
end-4
2025-06-01 17:47:00 +02:00
parent 5e8f912aa9
commit a6a3a144d2
+3 -5
View File
@@ -30,7 +30,6 @@ Singleton {
"description": qsTr("All-rounder | Good quality, decent quantity"), "description": qsTr("All-rounder | Good quality, decent quantity"),
"mapFunc": (response) => { "mapFunc": (response) => {
return response.map(item => { return response.map(item => {
console.log(JSON.stringify(item, null, 2))
return { return {
"id": item.id, "id": item.id,
"width": item.width, "width": item.width,
@@ -338,7 +337,6 @@ Singleton {
params.push("is_nsfw=" + (nsfw ? "null" : "false")) // null is random params.push("is_nsfw=" + (nsfw ? "null" : "false")) // null is random
} }
else if (currentProvider === "t.alcy.cc") { else if (currentProvider === "t.alcy.cc") {
console.log(`"${tagString}"`)
url += tagString url += tagString
params.push("json") params.push("json")
params.push("quantity=" + limit) params.push("quantity=" + limit)
@@ -363,7 +361,7 @@ Singleton {
function makeRequest(tags, nsfw=false, limit=20, page=1) { function makeRequest(tags, nsfw=false, limit=20, page=1) {
var url = constructRequestUrl(tags, nsfw, limit, page) var url = constructRequestUrl(tags, nsfw, limit, page)
console.log("[Booru] Making request to " + url) // console.log("[Booru] Making request to " + url)
const newResponse = root.booruResponseDataComponent.createObject(null, { const newResponse = root.booruResponseDataComponent.createObject(null, {
"provider": currentProvider, "provider": currentProvider,
@@ -378,7 +376,7 @@ Singleton {
xhr.onreadystatechange = function() { xhr.onreadystatechange = function() {
if (xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) { if (xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) {
try { try {
console.log("[Booru] Raw response: " + xhr.responseText) // console.log("[Booru] Raw response: " + xhr.responseText)
const provider = providers[currentProvider] const provider = providers[currentProvider]
let response; let response;
if (provider.manualParseFunc) { if (provider.manualParseFunc) {
@@ -387,7 +385,7 @@ Singleton {
response = JSON.parse(xhr.responseText) response = JSON.parse(xhr.responseText)
response = provider.mapFunc(response) response = provider.mapFunc(response)
} }
console.log("[Booru] Mapped response: " + JSON.stringify(response)) // console.log("[Booru] Mapped response: " + JSON.stringify(response))
newResponse.images = response newResponse.images = response
newResponse.message = response.length > 0 ? "" : root.failMessage newResponse.message = response.length > 0 ? "" : root.failMessage