Skip to content

Commit

Permalink
Do not send a proper XML header on init token response
Browse files Browse the repository at this point in the history
The vTuner API doesn't do it and some AVRs have problems with it.
Thanks to @AlfredJ91 for the heads-up.
  • Loading branch information
milaq committed Aug 14, 2019
1 parent 9e1bb5e commit 63b87df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ycast/vtuner.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


def get_init_token():
return XML_HEADER + '<EncryptedToken>0000000000000000</EncryptedToken>'
return '<EncryptedToken>0000000000000000</EncryptedToken>'


def strip_https(url):
Expand Down

0 comments on commit 63b87df

Please sign in to comment.