Skip to content

Commit

Permalink
Return true from isDone in RequestFutureTarget if load has failed.
Browse files Browse the repository at this point in the history
Fixes #1063.
  • Loading branch information
sjudd committed Sep 9, 2017
1 parent a4af922 commit f033e9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public synchronized boolean isCancelled() {

@Override
public synchronized boolean isDone() {
return isCancelled || resultReceived;
return isCancelled || resultReceived || loadFailed;
}

@Override
Expand Down

0 comments on commit f033e9b

Please sign in to comment.