Replace utf-8 encoding errors

This commit is contained in:
Julian Mutter 2023-03-17 08:14:29 +01:00
parent cc37488ebb
commit ba6e777320

View File

@ -328,7 +328,7 @@ def find_series_titles(dvd: Dvd):
if proc.returncode != 0:
return None
stdout = proc.stdout.decode("utf-8")
stdout = proc.stdout.decode("utf-8", errors="replace")
json_str = ""
in_json = False