Updated comments and method headers to clarify that the block status being checked within AuthenticatedActivity refers to the Wikimedia Commons block status of the user

This commit is contained in:
Sean Nemann 2018-06-11 13:07:54 -04:00
parent f9eed2027c
commit 22a5178e04
5 changed files with 15 additions and 15 deletions

View file

@ -617,11 +617,11 @@ public class ApacheHttpClientMediaWikiApi implements MediaWikiApi {
}
/**
* Checks to see if a user is currently blocked
* @return whether or not the user is blocked
* Checks to see if a user is currently blocked from Commons
* @return whether or not the user is blocked from Commons
*/
@Override
public boolean isUserBlocked() {
public boolean isUserBlockedFromCommons() {
boolean userBlocked = false;
try {
ApiResult result = api.action("query")

View file

@ -75,7 +75,7 @@ public interface MediaWikiApi {
@NonNull
Single<Integer> getUploadCount(String userName);
boolean isUserBlocked();
boolean isUserBlockedFromCommons();
interface ProgressListener {
void onProgress(long transferred, long total);