mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-05 17:45:52 +01:00
Fixed NPE in ResFileDecoder.decode().
This commit is contained in:
parent
036d766602
commit
2f28ef78f3
@ -77,7 +77,7 @@ public class ResFileDecoder {
|
||||
outFileName = outResName + ext;
|
||||
}
|
||||
}
|
||||
if (! ext.equals(".xml")) {
|
||||
if (! ".xml".equals(ext)) {
|
||||
decode(inDir, inFileName, outDir, outFileName, "raw");
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user