From 5be6608610b8da71d03a91292db9136ad43e3b5e Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 3 Sep 2021 16:51:24 +0100 Subject: [PATCH] Use nickname --- daemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon.py b/daemon.py index 23eee7a38..15c94b2a0 100644 --- a/daemon.py +++ b/daemon.py @@ -7748,7 +7748,7 @@ class PubServer(BaseHTTPRequestHandler): domain, mutePostJson) print('Muted post json: ' + str(mutePostJson)) print('Muted post nickname: ' + - self.postToNickname + ' ' + domain) + nickname + ' ' + domain) print('Muted post cache: ' + str(cachedPostFilename)) showIndividualPostIcons = True manuallyApproveFollowers = \ @@ -7846,7 +7846,7 @@ class PubServer(BaseHTTPRequestHandler): domain, mutePostJson) print('Unmuted post json: ' + str(mutePostJson)) print('Unmuted post nickname: ' + - self.postToNickname + ' ' + domain) + nickname + ' ' + domain) print('Unmuted post cache: ' + str(cachedPostFilename)) showIndividualPostIcons = True manuallyApproveFollowers = \