From 4c2d4eb049ee2afe70e5e20dcd1c8a9561cf3fa6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 21 Mar 2021 12:15:10 +0000 Subject: [PATCH] Show muted posts in desktop client --- desktop_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/desktop_client.py b/desktop_client.py index 645c406bf..a65213fb6 100644 --- a/desktop_client.py +++ b/desktop_client.py @@ -697,6 +697,8 @@ def _desktopShowBox(boxName: str, boxJson: {}, content = '🔗' + contentWarning else: content = contentWarning + if postJsonObject['object'].get('ignores'): + content = '🔇' print(indent + str(posStr) + ' | ' + name + ' | ' + published + ' | ' + content) ctr += 1