Crashes once logged in #160
Closed
by SeanDS opened 4 years ago
·
2 comments
Loading…
Reference in new issue
There is no content yet.
Delete Branch '%!s(MISSING)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
Running the latest pip version of DeleteFB (1.1.17) with the latest Chrome (89.0.4389.114) I get the following issues: first if I run
deletefb -E myemail -U myuser -P mypassword
, Chrome opens and I get the login page and cookie permission popup. Doing nothing, I getIf I re-run but this time manually click the cookie accept button quickly, it logs in, shows my home page but then crashes after a few seconds with the error
Any ideas what's happening here?
Ok, some poking around I managed to figure out the problem: the
force_mobile
function returns a URL that starts//mobile.facebook.com
but this StackOverflow answer suggests you need a protocol. I hackedforce_mobile
to addhttps
to the start of the URL and it then worked.If you make a PR for it I can merge it