Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/11fb78fafabbb6529080cb8eecb6f1aed51ad7ec You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed log viewer showing last line of log two times.

pull/1427/head
morpheus65535 4 years ago
parent 8cf02e31c9
commit 11fb78fafa

@ -536,6 +536,8 @@ class SystemLogs(Resource):
raw_lines = file.read()
lines = raw_lines.split('|\n')
for line in lines:
if line == '':
continue
raw_message = line.split('|')
raw_message_len = len(raw_message)
if raw_message_len > 3:

Loading…
Cancel
Save