fixed caching key not being calculated properly

This commit is contained in:
Daniel Gultsch 2018-11-08 20:52:57 +01:00
parent 235f33b8b1
commit aca4ba981f
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
}*/
public Bitmap get(final String name, String seed, final int size, boolean cachedOnly) {
final String KEY = key(seed == null ? name : seed, size);
final String KEY = key(seed == null ? name : name+"\0"+seed, size);
Bitmap bitmap = mXmppConnectionService.getBitmapCache().get(KEY);
if (bitmap != null || cachedOnly) {
return bitmap;