File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -570,7 +570,8 @@ void ExtractFileEntry(ZipEntry entry, string targetName)
570
570
continueRunning_ = events_ . OnFileFailure ( targetName , ex ) ;
571
571
}
572
572
else {
573
- continueRunning_ = false ;
573
+ continueRunning_ = false ;
574
+ throw ;
574
575
}
575
576
}
576
577
}
@@ -593,7 +594,7 @@ void ExtractEntry(ZipEntry entry)
593
594
doExtraction = ! ( ( targetName == null ) || ( targetName . Length == 0 ) ) ;
594
595
}
595
596
596
- // TODO: Fire delegate were compression method not supported, or name is invalid?
597
+ // TODO: Fire delegate/throw exception were compression method not supported, or name is invalid?
597
598
598
599
string dirName = null ;
599
600
@@ -623,6 +624,7 @@ void ExtractEntry(ZipEntry entry)
623
624
}
624
625
else {
625
626
continueRunning_ = false ;
627
+ throw ;
626
628
}
627
629
}
628
630
}
You can’t perform that action at this time.
0 commit comments