Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit 5eb04b44 authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

Fix typo

parent ff1f879a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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());
    }
+1 −1
Original line number Diff line number Diff line
@@ -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) {