Skip to content

Commit

Permalink
fix glide already resumed exception
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedAbogameel committed Oct 8, 2023
1 parent 55f4c2a commit d1d6eb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ object ImageDownloader {
continuation.resume(placeHolder)
}
} catch (t : Throwable) {
if(t.message != 'Already resumed'){
if(t.message != "Already resumed"){
continuation.resumeWithException(Exception("failed to download $filePath"))
}
}
Expand Down

0 comments on commit d1d6eb6

Please sign in to comment.