Today I started getting this error "level":"error","component":"scrapemate","error":"could not convert to string" #151
Answered
by
gfatzd
ForrestHall
asked this question in
Q&A
-
Not sure what has changed but today all of my attempts end in failure as : |
Beta Was this translation helpful? Give feedback.
Answered by
gfatzd
Jun 12, 2025
Replies: 1 comment 5 replies
-
Same same! Was loving the tool before this happened. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gmaps/place.go
const js = function parse() { const inputString = window.APP_INITIALIZATION_STATE[3]["Tf"][6] return inputString }
const js = `
function parse() {
const appState = window.APP_INITIALIZATION_STATE[3];
if (!appState) {
return null;
}
for (let i = 65; i <= 90; i++) {
const key = String.fromCharCode(i) + "f";
if (appState[key] && appState[key][6]) {
return appState[key][6];
}
}
return null;
}
`
replace this part ,and rebuild the exe file , it will work