fix message rate calculation in globe mode

This commit is contained in:
Matthias Wirth
2020-01-14 10:27:36 +01:00
parent 0e9854b02a
commit 4e2b2e6f67
2 changed files with 17 additions and 11 deletions

View File

@@ -171,7 +171,7 @@ function processReceiverUpdate(data, init) {
uat_last = uat_now;
uat_now = data.now;
} else {
if (data.now > now) {
if (data.now > now || globeIndex) {
last = now;
now = data.now;
}