catch utf8 error
continuous-integration/drone/push Build is passing Details

This commit is contained in:
www-data 2022-06-12 20:04:37 -04:00
parent 24284be199
commit 311f6a902e
1 changed files with 5 additions and 1 deletions

View File

@ -25,7 +25,11 @@ def unsanitize(node, default=""):
v = node.text + "=" * (4 - missing_padding)
else:
v = node.text
try:
return base64.b64decode(v).decode("utf-8")
except:
return "failed to read topic as utf-8"
return node.text