Payload data archives cannot be used to navigate the content, so
exclude them from the archive listing, as this is used by
Proxmox VE to list in the file browser.
Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
ExtractPath::ListArchives => {
let mut entries = vec![];
for file in manifest.files() {
- if !has_pxar_filename_extension(&file.filename, true)
+ if !file.filename.ends_with(".pxar.didx")
+ && !file.filename.ends_with(".mpxar.didx")
&& !file.filename.ends_with(".img.fidx")
{
continue;