Commit 86463044 authored by Mikhail Karpenko's avatar Mikhail Karpenko

Limit interface refresh period

parent fa047c63
...@@ -422,7 +422,7 @@ function process_recording(xmldoc) { ...@@ -422,7 +422,7 @@ function process_recording(xmldoc) {
if (data > frame_period) if (data > frame_period)
frame_period = data; frame_period = data;
} }
if (frame_period != 0) { if (frame_period != 0 && frame_period < 1000000) {
frame_period /= 1000; frame_period /= 1000;
} else { } else {
frame_period = 1000; frame_period = 1000;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment