change the time out

This commit is contained in:
zhongchao
2022-07-03 22:37:19 +08:00
parent 924a92c2c4
commit b460d61c48

View File

@@ -180,7 +180,7 @@ class IdentifyOriginDataDrawer : Identify, IMoGoAutopilotStatusListener {
private fun timeOut(time: Double): Boolean {
val duration =
(CallerAutoPilotStatusListenerManager.getCurWgs84SatelliteTime() * 1000).toLong() - (time * 1000).toLong()
return duration >= 1000
return duration >= 500
}
}