From c8cd5ab9bd40bf97085772464b57f49ae017d275 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 21 Jan 2021 11:14:23 +0000 Subject: [PATCH] Debug for @ headers --- daemon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon.py b/daemon.py index 83320fc8b..2c86469a0 100644 --- a/daemon.py +++ b/daemon.py @@ -9770,6 +9770,7 @@ class PubServer(BaseHTTPRequestHandler): # replace https://domain/@nick with https://domain/users/nick if self.path.startswith('/@'): self.path = self.path.replace('/@', '/users/') + print('@ detected: ' + str(self.headers)) # redirect music to #nowplaying list if self.path == '/music' or self.path == '/nowplaying':