From c96b0de48fe1c41eaa86e8a57862f718270cd272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Mon, 3 Aug 2020 14:10:46 +0200 Subject: [PATCH] datastore: allow browsing signed pxar files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- www/DataStoreContent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/DataStoreContent.js b/www/DataStoreContent.js index e8690486..62e57817 100644 --- a/www/DataStoreContent.js +++ b/www/DataStoreContent.js @@ -505,7 +505,7 @@ Ext.define('PBS.DataStoreContent', { return !(data.leaf && data.filename && data.filename.endsWith('pxar.didx') && - data['crypt-mode'] < 2); + data['crypt-mode'] < 3); } }, ]