diff --git a/src/main/java/com/budiyev/android/imageloader/ImageRequest.java b/src/main/java/com/budiyev/android/imageloader/ImageRequest.java index e76af79..b2c1c0f 100644 --- a/src/main/java/com/budiyev/android/imageloader/ImageRequest.java +++ b/src/main/java/com/budiyev/android/imageloader/ImageRequest.java @@ -338,7 +338,7 @@ public void load(@NonNull View view) { } DisplayImageAction currentAction = InternalUtils.getDisplayImageAction(view); if (currentAction != null) { - if (currentAction.hasSameKey(key)) { + if (currentAction.hasSameKey(key) && !currentAction.isCancelled()) { return; } currentAction.cancel();