DBReader: set calibrated to true if database is empty (avoiding not calibrated warning)

This commit is contained in:
matlabbe
2016-09-03 14:45:10 -04:00
parent e5074afdeb
commit 0848b03127

View File

@@ -172,6 +172,10 @@ bool DBReader::init(
}
}
}
else
{
_calibrated = true; // database is empty, make sure calibration warning is not shown.
}
_timer.start();