* fixed bug that caused [.rar, .r00, .r01, ...] to be ignored
This commit is contained in:
parent
1f10c59364
commit
f76ea32e10
|
@ -126,7 +126,7 @@ public class Archive implements Closeable {
|
|||
|
||||
public static final FileFilter VOLUME_ONE_FILTER = new FileFilter() {
|
||||
|
||||
private Pattern volume = Pattern.compile("[.]r[0-9]+$|[.]part[0-9]+|[.]rar$|[.][0-9]+$", Pattern.CASE_INSENSITIVE);
|
||||
private Pattern volume = Pattern.compile("[.]r[0-9]+$|[.]part[0-9]+|[.][0-9]+$", Pattern.CASE_INSENSITIVE);
|
||||
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue