Skip to content

Commit

Permalink
Merge pull request #807 from AhmedAbogameel/glide-exception-already-r…
Browse files Browse the repository at this point in the history
…esumed-crash

Glide exception already resumed crash
  • Loading branch information
kalismeras61 authored Dec 7, 2023
2 parents f0c7a28 + d1d6eb6 commit d381c4c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ object ImageDownloader {
continuation.resume(placeHolder)
}
} catch (t : Throwable) {
continuation.resumeWithException(Exception("failed to download $filePath"))
if(t.message != "Already resumed"){
continuation.resumeWithException(Exception("failed to download $filePath"))
}
}
}

Expand Down

0 comments on commit d381c4c

Please sign in to comment.