From 9a12ee1ec88b7a3b23d53af3684d0746ad27ef12 Mon Sep 17 00:00:00 2001 From: TheNetsky <56271887+TheNetsky@users.noreply.github.com> Date: Mon, 24 Feb 2025 17:59:20 +0100 Subject: [PATCH] Fix geoLocale not being uppercase --- src/functions/activities/Search.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions/activities/Search.ts b/src/functions/activities/Search.ts index 0ddfbdf..ecfcdf5 100644 --- a/src/functions/activities/Search.ts +++ b/src/functions/activities/Search.ts @@ -222,7 +222,7 @@ export class Search extends Workers { headers: { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' }, - data: `f.req=[[[i0OFE,"[null, null, \\"${geoLocale}\\", 0, null, 48]"]]]` + data: `f.req=[[[i0OFE,"[null, null, \\"${geoLocale.toUpperCase()}\\", 0, null, 48]"]]]` } const response = await this.bot.axios.request(request, this.bot.config.proxy.proxyGoogleTrends)