Show icon of the patch for aps and ebp files

This commit is contained in:
Boris Timofeev 2017-01-19 16:54:08 +03:00
parent 220583aaf0
commit 1e634ec86e

View file

@ -148,7 +148,7 @@ public class Utils {
}
public static boolean isPatch(File file) {
String[] patches = {"ips", "ups", "bps", "ppf", "dps", "xdelta", "xdelta3", "vcdiff"};
String[] patches = {"ips", "ups", "bps", "aps", "ppf", "dps", "ebp", "xdelta", "xdelta3", "vcdiff"};
String ext = FilenameUtils.getExtension(file.getName()).toLowerCase(Locale.getDefault());
for (String patch : patches) {
if (ext.equals(patch))