mirror of
https://github.com/TeamVanced/VancedMicroG
synced 2024-11-18 18:19:26 +01:00
Fix typo
This commit is contained in:
parent
ff1f879ab6
commit
5eb04b44db
@ -45,7 +45,7 @@ public class PeopleManager {
|
||||
public static final String USERINFO_URL = "https://www.googleapis.com/oauth2/v1/userinfo";
|
||||
public static final String REGEX_SEARCH_USER_PHOTO = "https?\\:\\/\\/lh([0-9]*)\\.googleusercontent\\.com/";
|
||||
|
||||
public static File getOwnerAvaterFile(Context context, String accountName, boolean network) {
|
||||
public static File getOwnerAvatarFile(Context context, String accountName, boolean network) {
|
||||
DatabaseHelper databaseHelper = new DatabaseHelper(context);
|
||||
Cursor cursor = databaseHelper.getOwner(accountName);
|
||||
String url = null;
|
||||
@ -78,7 +78,7 @@ public class PeopleManager {
|
||||
}
|
||||
|
||||
public static Bitmap getOwnerAvatarBitmap(Context context, String accountName, boolean network) {
|
||||
File avaterFile = getOwnerAvaterFile(context, accountName, network);
|
||||
File avaterFile = getOwnerAvatarFile(context, accountName, network);
|
||||
if (avaterFile == null) return null;
|
||||
return BitmapFactory.decodeFile(avaterFile.getPath());
|
||||
}
|
||||
|
@ -127,7 +127,7 @@ public class PeopleServiceImpl extends IPeopleService.Stub {
|
||||
extras.putBoolean("rewindable", false);
|
||||
extras.putInt("width", 0);
|
||||
extras.putInt("height", 0);
|
||||
File avaterFile = PeopleManager.getOwnerAvaterFile(context, account, true);
|
||||
File avaterFile = PeopleManager.getOwnerAvatarFile(context, account, true);
|
||||
try {
|
||||
ParcelFileDescriptor fileDescriptor = null;
|
||||
if (avaterFile != null) {
|
||||
|
Loading…
Reference in New Issue
Block a user