mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 12:53:55 +01:00
Make neccesary changes
This commit is contained in:
parent
aa3eeb32be
commit
b2cd964b39
3 changed files with 3 additions and 5 deletions
|
|
@ -1,7 +1,6 @@
|
|||
package fr.free.nrw.commons.nearby.model
|
||||
|
||||
import com.google.gson.annotations.SerializedName
|
||||
import java.util.Locale
|
||||
|
||||
class ResultTuple {
|
||||
@SerializedName("xml:lang")
|
||||
|
|
@ -16,7 +15,7 @@ class ResultTuple {
|
|||
}
|
||||
|
||||
constructor() {
|
||||
language = Locale.getDefault().language
|
||||
language = "bug" // Basa Ugi language - TODO Respect the `Default description language`setting.
|
||||
type = ""
|
||||
value = ""
|
||||
}
|
||||
|
|
|
|||
|
|
@ -373,7 +373,7 @@ class UploadWorker(
|
|||
return@onErrorReturn null
|
||||
}.blockingSingle()
|
||||
|
||||
if (uploadResult != null && uploadResult.isSuccessful()) {
|
||||
if (null != uploadResult && uploadResult.isSuccessful()) {
|
||||
Timber.d(
|
||||
"Stash Upload success..proceeding to make wikidata edit",
|
||||
)
|
||||
|
|
@ -479,7 +479,7 @@ class UploadWorker(
|
|||
uploadResult.filename,
|
||||
contribution.media.captions,
|
||||
)
|
||||
if (revisionID != null) {
|
||||
if (null != revisionID) {
|
||||
withContext(Dispatchers.IO) {
|
||||
val place = placesRepository.fetchPlace(wikiDataPlace.id)
|
||||
place.name = wikiDataPlace.name
|
||||
|
|
|
|||
|
|
@ -235,7 +235,6 @@ class WikidataEditService @Inject constructor(
|
|||
}
|
||||
}
|
||||
|
||||
@SuppressLint("NewApi")
|
||||
private fun captionEdits(contribution: Contribution, fileEntityId: Long): Observable<Boolean> {
|
||||
return Observable.fromIterable(contribution.media.captions.entries)
|
||||
.concatMap { addCaption(fileEntityId, it.key, it.value) }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue