From c7670cdd3a59a44aaad67faaaab9907195fa7016 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 24 Jan 2021 18:40:33 +0000 Subject: [PATCH] Allow empty message up to the point of creation --- daemon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index 868deeeba..435689fba 100644 --- a/daemon.py +++ b/daemon.py @@ -12170,7 +12170,8 @@ class PubServer(BaseHTTPRequestHandler): if not citationsButtonPress: # process the received text fields from the POST if not fields.get('message') and \ - not fields.get('imageDescription'): + not fields.get('imageDescription') and \ + not fields.get('pinToProfile'): return -1 if fields.get('submitPost'): if fields['submitPost'] != \