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
8b97d50050
commit
cec87ee6a8
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(
|
||||
SendLocationEvents.SendLocation(
|
||||
cameraPosition = SendLocationEvents.SendLocation.CameraPosition(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue