* Use proper unrar for .rar riles (7za has issues)

* Fix short/long desc issues when filenames have paths
This commit is contained in:
Bryan Ashby 2017-02-17 21:56:28 -07:00
parent ec3e3f0755
commit e70f28fffe
2 changed files with 20 additions and 4 deletions

View file

@ -265,7 +265,7 @@ module.exports = class ArchiveUtil {
while((m = entryMatchRe.exec(output))) {
entries.push({
byteSize : parseInt(m[entryGroupOrder.byteSize]),
fileName : m[entryGroupOrder.fileName],
fileName : m[entryGroupOrder.fileName].trim(),
});
}