Skip to content

Commit 16a1326

Browse files
authored
Merge pull request #36 from what3words/staging
1.0.7
2 parents 194756c + fbdf40a commit 16a1326

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ android.nonTransitiveRClass=true
2222
# Kotlin code style for this project: "official" or "obsolete":
2323
kotlin.code.style=official
2424
android.nonFinalResIds=false
25-
LIBRARY_VERSION=1.0.6
25+
LIBRARY_VERSION=1.0.7
2626
MAPBOX_DOWNLOADS_TOKEN = "YOUR_MAPBOX_DOWNLOADS_TOKEN"

lib/src/main/java/com/what3words/components/maps/wrappers/W3WMapManager.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ internal class W3WMapManager(
6161
lat,
6262
lng
6363
)
64-
).execute()
64+
).language(language).execute()
6565
}
6666
if (c23wa.isSuccessful) {
6767
val withCoordinates = c23wa.toSuggestionWithCoordinates()
@@ -148,7 +148,7 @@ internal class W3WMapManager(
148148
lat,
149149
lng
150150
)
151-
).execute()
151+
).language(language).execute()
152152
}
153153
if (c23wa.isSuccessful) {
154154
val withCoordinates = c23wa.toSuggestionWithCoordinates()
@@ -185,7 +185,7 @@ internal class W3WMapManager(
185185
location.first,
186186
location.second
187187
)
188-
).execute()
188+
).language(language).execute()
189189
if (c23wa.isSuccessful) {
190190
val withCoordinates = c23wa.toSuggestionWithCoordinates()
191191
toBeAdded.add(

0 commit comments

Comments
 (0)