1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-10-03 22:07:11 +02:00

Update default user agent

This commit is contained in:
Alexander Graf 2021-03-20 17:15:05 +01:00
parent bba7d5131c
commit f70355e803
2 changed files with 2 additions and 2 deletions

View File

@ -246,7 +246,7 @@ How to Download
.. option:: --user-agent USER_AGENT
User Agent to use for HTTP requests. Per default, Instaloader pretends being
Chrome/88 on Linux.
Chrome/89 on Linux.
.. option:: --max-connection-attempts N

View File

@ -33,7 +33,7 @@ def copy_session(session: requests.Session, request_timeout: Optional[float] = N
def default_user_agent() -> str:
return 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 ' \
'(KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36'
'(KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36'
class InstaloaderContext: