Use ic_launcher as avatar fallback image

This commit is contained in:
stefan-niedermann 2019-09-22 09:28:05 +02:00
parent 9a161c1fea
commit 7001756bf1

View file

@ -648,7 +648,7 @@ public class NotesListViewActivity extends AppCompatActivity implements ItemAdap
Glide
.with(this)
.load(url + "/index.php/avatar/" + Uri.encode(username) + "/64")
.error(R.mipmap.ic_launcher_round)
.error(R.mipmap.ic_launcher)
.apply(RequestOptions.circleCropTransform())
.into(this.currentAccountImage);
}