From ac8eb62de0b3491ed9feefc78e86291afc677263 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Thu, 25 Mar 2021 14:51:51 -0400 Subject: [PATCH] Fixed issue with log entries without exception stack --- bazarr/api.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bazarr/api.py b/bazarr/api.py index 0c4d9691f..a9d87481b 100644 --- a/bazarr/api.py +++ b/bazarr/api.py @@ -521,8 +521,9 @@ class SystemLogs(Resource): log["timestamp"] = lin[0] log["type"] = lin[1].rstrip() log["message"] = lin[3] - if lin[4] != '\n': - log['exception'] = lin[4].strip('\'').replace(' ', '\u2003\u2003') + if len(lin) > 4: + if lin[4] != '\n': + log['exception'] = lin[4].strip('\'').replace(' ', '\u2003\u2003') logs.append(log) logs.reverse() return jsonify(data=logs)