Only set authorization header if access_token is present

This commit is contained in:
Tobias Bradtke 2019-05-12 02:13:57 +02:00 cometido por GitHub
pare b7fb2d69e6
commit 63975a07ad
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 4AEE18F83AFDEB23

Veure arxiu

@ -2849,7 +2849,7 @@ class Mastodon:
# Connect function (called and then potentially passed to async handler)
def connect_func():
headers = {"Authorization": "Bearer " + self.access_token}
headers = {"Authorization": "Bearer " + self.access_token} if self.access_token else {}
connection = self.session.get(url + endpoint, headers = headers, data = params, stream = True,
timeout=(self.request_timeout, timeout))