From 63b87dfa9586c46ae0744d9d3cb07e55c1fdcf7d Mon Sep 17 00:00:00 2001 From: milaq Date: Wed, 14 Aug 2019 14:22:20 +0200 Subject: [PATCH] Do not send a proper XML header on init token response The vTuner API doesn't do it and some AVRs have problems with it. Thanks to @AlfredJ91 for the heads-up. --- ycast/vtuner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ycast/vtuner.py b/ycast/vtuner.py index d5d4a75..6e325e3 100644 --- a/ycast/vtuner.py +++ b/ycast/vtuner.py @@ -4,7 +4,7 @@ XML_HEADER = '' def get_init_token(): - return XML_HEADER + '0000000000000000' + return '0000000000000000' def strip_https(url):