mirror of
https://github.com/YACReader/yacreader
synced 2025-07-17 20:44:32 -04:00
* Enable unarr 7z support. Closes #113
This commit is contained in:
@ -22,7 +22,8 @@ CompressedArchive::CompressedArchive(const QString &filePath, QObject *parent)
|
||||
//open archive
|
||||
ar = ar_open_rar_archive(stream);
|
||||
//TODO: build unarr with 7z support and test this!
|
||||
//if (!ar) ar = ar_open_7z_archive(stream);
|
||||
if (!ar)
|
||||
ar = ar_open_7z_archive(stream);
|
||||
if (!ar)
|
||||
ar = ar_open_tar_archive(stream);
|
||||
//zip detection is costly, so it comes last...
|
||||
|
Reference in New Issue
Block a user