mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-26 12:48:36 -06:00
fix: Need a space for the token to work
This commit is contained in:
parent
8a3e6fa35f
commit
64ab240a8a
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ def send_notif(appstate, error=False):
|
||||||
'Title': encoded_title}
|
'Title': encoded_title}
|
||||||
try:
|
try:
|
||||||
token = config[entry]['token']
|
token = config[entry]['token']
|
||||||
headers['Authorization'] = 'Bearer' + token
|
headers['Authorization'] = 'Bearer ' + token
|
||||||
except:
|
except:
|
||||||
continue
|
continue
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue