fix: [pystemon importer] fix base64 encoding

pull/604/head v5.1
Terrtia 2023-06-26 11:24:04 +02:00
parent f1f33d6c1b
commit a0686eefcf
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class AbstractImporter(ABC): # TODO ail queues
if not gzipped:
content = self.b64_gzip(content)
elif not b64:
content = self.b64(gzipped)
content = self.b64(content)
if not content:
return None
if isinstance(content, bytes):