From 5e1cb808214d3321c799ef779f9ee71d03fc3382 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 5 Aug 2020 22:34:14 +0100 Subject: [PATCH] Parse notes --- daemon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon.py b/daemon.py index 89b0ad273..86dc70ac7 100644 --- a/daemon.py +++ b/daemon.py @@ -7763,6 +7763,7 @@ class PubServer(BaseHTTPRequestHandler): personNotes = optionsConfirmParams.split('optionnotes=')[1] if '&' in personNotes: personNotes = personNotes.split('&')[0] + personNotes = urllib.parse.unquote(personNotes.strip()) # Limit the length of the notes if len(personNotes) > 64000: personNotes = None