Don't crash when sharing a location with no maptiler apikey (#919)
Related to: - https://github.com/vector-im/element-meta/issues/1682
This commit is contained in:
parent
c882cab67f
commit
30060b5729
1 changed files with 4 additions and 1 deletions
|
|
@ -133,7 +133,10 @@ fun SendLocationView(
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
modifier = Modifier.clickable {
|
modifier = Modifier.clickable(
|
||||||
|
// target is null when the map hasn't loaded (or api key is wrong) so we disable the button
|
||||||
|
enabled = cameraPositionState.position.target != null
|
||||||
|
) {
|
||||||
state.eventSink(
|
state.eventSink(
|
||||||
SendLocationEvents.SendLocation(
|
SendLocationEvents.SendLocation(
|
||||||
cameraPosition = SendLocationEvents.SendLocation.CameraPosition(
|
cameraPosition = SendLocationEvents.SendLocation.CameraPosition(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue