Fix loading images from db even if disabled

This commit is contained in:
Stypox 2023-05-02 21:45:07 +02:00
parent 7828cd233d
commit b7f196d920

View file

@ -202,7 +202,10 @@ public final class PicassoHelper {
private static RequestCreator loadImageDefault(@Nullable final String url,
final int placeholderResId,
final boolean showPlaceholderWhileLoading) {
if (isNullOrEmpty(url)) {
// if the URL was chosen with `choosePreferredImage` it will be null, but check again
// `shouldLoadImages` in case the URL was chosen with `imageListToDbUrl` (which is the case
// for URLs stored in the database)
if (isNullOrEmpty(url) || !ImageStrategy.shouldLoadImages()) {
return picassoInstance
.load((String) null)
.placeholder(placeholderResId) // show placeholder when no image should load