-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ERROR root: CLIENT: unrecoverable low-level error data_dict['ds:7'][0][2] #413
Comments
Hi, thank you very much for the solution but when using that regex it fails me in javascript.load (data) it might be that I have to get some spaces that regex? |
the error is: 10:12:55 ERROR root: CLIENT: unrecoverable low-level error and the data is : ('({key: 'ds:1', isError: false , hash: '1', data:function(){return [["ca:apcf"]\n]\n}})', '({key: 'ds:1', isError: false , hash: '1', data:function(){return [["ca:apcf"]\n]\n}})') |
I dunno, this is what I have right now (I restarted the process to ensure nothing changed).
|
client.py line 227 was where the error was coming from
I got this yesterday after I rebooted one of my boxes and reconnected.
It seems that google changed how they return the initialization request?
I really have no idea as to exactly what is going on but I know what I did to make it work
it seems they added <script nonce="bunchfstuff"> to the format in which things are returned. I do not know what it looked like before, and maybe I am completely wrong in what is going on, but I know that after a fresh install, with different users, I always got the same error above. When I made the following changes it works now:
line 30
r"(?:>AF_initDataCallback((.*?));</script>)", re.DOTALL
hacky way to 'fix' it but it now works for me!
The text was updated successfully, but these errors were encountered: