1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-02-09 15:40:08 +00:00

fix avatar not vissible on info screen bug

This commit is contained in:
Christian Schabesberger 2017-12-22 16:53:43 +01:00
parent a47a0b5432
commit ec8fff421a

View File

@ -546,7 +546,7 @@ public class VideoDetailFragment extends BaseStateFragment<StreamInfo> implement
}); });
} }
if (TextUtils.isEmpty(info.getUploaderAvatarUrl())) { if (!TextUtils.isEmpty(info.getUploaderAvatarUrl())) {
imageLoader.displayImage(info.getUploaderAvatarUrl(), uploaderThumb, DISPLAY_AVATAR_OPTIONS); imageLoader.displayImage(info.getUploaderAvatarUrl(), uploaderThumb, DISPLAY_AVATAR_OPTIONS);
} }
} }