From 4b9055cc34f1d17791d78ef653a87c4a9e579bf2 Mon Sep 17 00:00:00 2001 From: Federico Barlotti Date: Fri, 2 Aug 2024 06:51:50 +0200 Subject: [PATCH] 2.6.3 : Fixed webpage query AGAIN --- ext/global.js | 2 +- ext/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/global.js b/ext/global.js index 6a53323..4944ec5 100644 --- a/ext/global.js +++ b/ext/global.js @@ -579,7 +579,7 @@ async function fetch_channel_data(auth_bear) { // Direct access/webpage internal API. let querytosend = { - query: 'query ($first: Int!, $page: Int!, $q: String) {\n bannedChannels(\n first: $first\n page: $page\n q: $q\n orderBy: {field: \n"last_live", order: DESC}\n ) {\n account_type\n avatar\n channel_name\n id\n last_live\n online\n banned\n __typename\n }\n}', + query: 'query ($first: Int!, $page: Int!, $q: String) {\n followers(\n first: $first\n page: $page\n q: $q\n orderBy: {field: \n"last_live", order: DESC}\n ) {\n account_type\n avatar\n channel_name\n id\n last_live\n notification\n online\n banned\n __typename\n }\n}', variables: { "first": settings.maxnames, "page": 1, diff --git a/ext/manifest.json b/ext/manifest.json index 6f0eae6..00e0a45 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -1,6 +1,6 @@ { "name": "Picarto Notifier", - "version": "2.6.2", + "version": "2.6.3", "manifest_version": 2, "permissions": [ "*://*.picarto.tv/*",