mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-06 12:47:13 +02:00
* Use proper unrar for .rar riles (7za has issues)
* Fix short/long desc issues when filenames have paths
This commit is contained in:
parent
ec3e3f0755
commit
e70f28fffe
2 changed files with 20 additions and 4 deletions
|
@ -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(),
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue