mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 10:25:35 +03:00
Code review fixes.
This commit is contained in:
parent
15e1c7bc37
commit
28f483870f
3 changed files with 5 additions and 5 deletions
|
@ -42,11 +42,11 @@ data class MessageLiveLocationContent(
|
||||||
/**
|
/**
|
||||||
* Exact time that the data in the event refers to (milliseconds since the UNIX epoch)
|
* Exact time that the data in the event refers to (milliseconds since the UNIX epoch)
|
||||||
*/
|
*/
|
||||||
@Json(name = "org.matrix.msc3488.ts") val unstableTs: Long? = null,
|
@Json(name = "org.matrix.msc3488.ts") val unstableTimestampAsMilliseconds: Long? = null,
|
||||||
@Json(name = "m.ts") val ts: Long? = null
|
@Json(name = "m.ts") val timestampAsMilliseconds: Long? = null
|
||||||
) : MessageContent {
|
) : MessageContent {
|
||||||
|
|
||||||
fun getBestLocationInfo() = locationInfo ?: unstableLocationInfo
|
fun getBestLocationInfo() = locationInfo ?: unstableLocationInfo
|
||||||
|
|
||||||
fun getBestTs() = ts ?: unstableTs
|
fun getBestTimestampAsMilliseconds() = timestampAsMilliseconds ?: unstableTimestampAsMilliseconds
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,7 +73,7 @@ internal class DefaultLiveLocationAggregationProcessor @Inject constructor() : L
|
||||||
private fun isBeaconInfoOutdated(beaconInfoContent: LiveLocationBeaconContent,
|
private fun isBeaconInfoOutdated(beaconInfoContent: LiveLocationBeaconContent,
|
||||||
liveLocationContent: MessageLiveLocationContent): Boolean {
|
liveLocationContent: MessageLiveLocationContent): Boolean {
|
||||||
val beaconInfoStartTime = beaconInfoContent.getBestTimestampAsMilliseconds() ?: 0
|
val beaconInfoStartTime = beaconInfoContent.getBestTimestampAsMilliseconds() ?: 0
|
||||||
val liveLocationEventTime = liveLocationContent.getBestTs() ?: 0
|
val liveLocationEventTime = liveLocationContent.getBestTimestampAsMilliseconds() ?: 0
|
||||||
val timeout = beaconInfoContent.getBestBeaconInfo()?.timeout ?: 0
|
val timeout = beaconInfoContent.getBestBeaconInfo()?.timeout ?: 0
|
||||||
return liveLocationEventTime - beaconInfoStartTime > timeout
|
return liveLocationEventTime - beaconInfoStartTime > timeout
|
||||||
}
|
}
|
||||||
|
|
|
@ -256,7 +256,7 @@ internal class LocalEchoEventFactory @Inject constructor(
|
||||||
eventId = beaconInfoEventId
|
eventId = beaconInfoEventId
|
||||||
),
|
),
|
||||||
unstableLocationInfo = LocationInfo(geoUri = geoUri, description = geoUri),
|
unstableLocationInfo = LocationInfo(geoUri = geoUri, description = geoUri),
|
||||||
unstableTs = TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis()),
|
unstableTimestampAsMilliseconds = TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis()),
|
||||||
)
|
)
|
||||||
val localId = LocalEcho.createLocalEchoId()
|
val localId = LocalEcho.createLocalEchoId()
|
||||||
return Event(
|
return Event(
|
||||||
|
|
Loading…
Reference in a new issue