Skip to content

Commit

Permalink
Fix for an attempt to prefetch local thread
Browse files Browse the repository at this point in the history
  • Loading branch information
K1rakishou committed Feb 5, 2020
1 parent e1b3aac commit c213d86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ public void onChanLoaderData(ChanThread result) {
}
}

if (ChanSettings.autoLoadThreadImages.get() && !loadable.isLocal()) {
if (ChanSettings.autoLoadThreadImages.get() && !loadable.isLocal() && !loadable.isDownloading()) {
List<PostImage> postImageList = new ArrayList<>(16);
cancelPrefetching();

Expand Down

0 comments on commit c213d86

Please sign in to comment.