From 71bd312aa39cc818b02ab0066d0875b02b95c8bb Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 7 Aug 2019 12:58:01 +0100 Subject: [PATCH] Comments --- daemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon.py b/daemon.py index c9703658..571a0dcc 100644 --- a/daemon.py +++ b/daemon.py @@ -749,7 +749,7 @@ class PubServer(BaseHTTPRequestHandler): self._redirect_headers(actor+'/inbox',cookie) return - # send a follow request approval + # send a follow request approval from the web interface if authorized and '/followapprove=' in self.path: originPathStr=self.path.split('/followapprove=')[0] followerNickname=getNicknameFromActor(originPathStr) @@ -772,7 +772,7 @@ class PubServer(BaseHTTPRequestHandler): self.server.GETbusy=False return - # deny a follow request + # deny a follow request from the web interface if authorized and '/followdeny=' in self.path: originPathStr=self.path.split('/followdeny=')[0] followerNickname=getNicknameFromActor(originPathStr)