Skip to content

Commit

Permalink
Use HTTPS in url to avoid 1 extra redirect hop
Browse files Browse the repository at this point in the history
  • Loading branch information
mobeigi committed Aug 21, 2024
1 parent a2b7487 commit e9a56a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fb2cal/facebook_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def _get_pubkey_from_html(self, html):
def authenticate(self, email, password):
""" Authenticate with Facebook setting up session for further requests """

FACEBOOK_LOGIN_URL = 'http://www.facebook.com/login'
FACEBOOK_LOGIN_URL = 'https://www.facebook.com/login'

login_page = self.browser.open(FACEBOOK_LOGIN_URL)

Expand Down

0 comments on commit e9a56a4

Please sign in to comment.