Fix loading images from db even if disabled

This commit is contained in:
Stypox 2023-05-02 21:45:07 +02:00
parent 87dca0f7ec
commit 0085ca6416
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23
1 changed files with 4 additions and 1 deletions

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