Skip to content

Commit d5c6a45

Browse files
AlexKlimajbkueng
authored andcommitted
Fix uploading of currupt logs
1 parent a16c3e7 commit d5c6a45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/plot_app/helper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def load_ulog_file(file_name):
314314
'vehicle_thrust_setpoint', 'vehicle_torque_setpoint',
315315
'failsafe_flags']
316316
try:
317-
ulog = ULog(file_name, msg_filter, disable_str_exceptions=False)
317+
ulog = ULog(file_name, msg_filter, disable_str_exceptions=True)
318318
except FileNotFoundError:
319319
print("Error: file %s not found" % file_name)
320320
raise

0 commit comments

Comments
 (0)