Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dscalzi committed May 8, 2019
1 parent 94980d7 commit 5c6987d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public static void asyncExtract(ICommandSender sender, File src, File dest, bool
List<String> atRisk = new ArrayList<String>();
for(final OpTuple op : pDeque) {
if(op.getProvider().canDetectPipedConflicts())
atRisk.addAll(op.getProvider().scanForExtractionConflicts(sender, op.getSrc(), op.getDest(), true));
atRisk.addAll(op.getProvider().scanForExtractionConflicts(sender, op.getSrc(), op.getDest(), true));
}
if(atRisk.size() > 0) {
WARNED.put(sender.getName(), new WarnData(src, dest, new PageList<String>(4, atRisk)));
Expand Down

0 comments on commit 5c6987d

Please sign in to comment.