From a3b62064811b39799c1abae7c8316b3714c77e72 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 24 Aug 2019 10:33:25 +0100 Subject: [PATCH] Either http or json --- daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index 12fc06d0e..6f1473444 100644 --- a/daemon.py +++ b/daemon.py @@ -494,7 +494,7 @@ class PubServer(BaseHTTPRequestHandler): htmlGET=True # replace https://domain/@nick with https://domain/users/nick - if htmlGET and self.path.startswith('/@'): + if self.path.startswith('/@'): self.path=self.path.replace('/@','/users/') # treat shared inbox paths consistently