replaced wikidatCreateClaim to wikidataCreateClaim (#3010)

This commit is contained in:
sherlockbeard 2019-06-11 14:35:12 +05:30 committed by Nicolas Raoul
parent 69e23b73a8
commit 6a9018b550
3 changed files with 3 additions and 3 deletions

View file

@ -79,7 +79,7 @@ public class WikidataEditService {
Timber.d("Attempting to edit Wikidata property %s", wikidataEntityId);
Observable.fromCallable(() -> {
String propertyValue = getFileName(fileName);
return mediaWikiApi.wikidatCreateClaim(wikidataEntityId, "P18", "value", propertyValue);
return mediaWikiApi.wikidataCreateClaim(wikidataEntityId, "P18", "value", propertyValue);
})
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())