Skip to content

Commit bbbb383

Browse files
committed
Propogate load source when using InputStream.
1 parent 0c7c135 commit bbbb383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

picasso/src/main/java/com/squareup/picasso/NetworkRequestHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public NetworkRequestHandler(Downloader downloader, Stats stats) {
7272
stats.dispatchDownloadFinished(response.getContentLength());
7373
}
7474
try {
75-
return new Result(decodeStream(is, data), NETWORK);
75+
return new Result(decodeStream(is, data), loadedFrom);
7676
} finally {
7777
Utils.closeQuietly(is);
7878
}

0 commit comments

Comments
 (0)