datastore: allow browsing signed pxar files

just because we can't verify the signature, does not mean the contents
are not accessible. it might make sense to make it obvious with a hint
or click-through warning that no signature verification can take place
or this and downloading.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2020-08-03 14:10:46 +02:00 committed by Dietmar Maurer
parent 2ce159343b
commit c96b0de48f
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ Ext.define('PBS.DataStoreContent', {
return !(data.leaf && return !(data.leaf &&
data.filename && data.filename &&
data.filename.endsWith('pxar.didx') && data.filename.endsWith('pxar.didx') &&
data['crypt-mode'] < 2); data['crypt-mode'] < 3);
} }
}, },
] ]