Fix avatar issue in quick menu switcher #689

This commit is contained in:
stom79 2019-01-03 10:42:44 +01:00
parent bd70ef4f93
commit 56ee296be3
1 changed files with 5 additions and 1 deletions

View File

@ -1502,6 +1502,8 @@ public class Helper {
SharedPreferences mSharedPreferences = activity.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
String currrentUserId = mSharedPreferences.getString(Helper.PREF_KEY_ID, null);
for(final Account accountChoice: accounts) {
if( !accountChoice.getAvatar().startsWith("http"))
accountChoice.setAvatar("https://" + accountChoice.getInstance() + accountChoice.getAvatar());
if (currrentUserId != null && !currrentUserId.equals(accountChoice.getId())) {
icon = new ImageView(activity);
ImageView finalIcon = icon;
@ -1552,7 +1554,9 @@ public class Helper {
for(final Account accountChoice: accounts) {
if (currrentUserId != null && !currrentUserId.equals(accountChoice.getId())) {
SubActionButton.Builder itemBuilderAcc = new SubActionButton.Builder(activity);
if( !accountChoice.getAvatar().startsWith("http"))
accountChoice.setAvatar("https://" + accountChoice.getInstance() + accountChoice.getAvatar());
Log.v(Helper.TAG,"avatar: " + accountChoice.getAvatar());
ImageView itemIconAcc = new ImageView(activity);
Glide.with(activity.getApplicationContext())
.asBitmap()