Skip to content

Commit 8db76d5

Browse files
author
Paul Korzhyk
committed
Support encrypted backups in the feature detection
1 parent 5b579a0 commit 8db76d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/src/actions/connection.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ export const checkNetworkHealth = async (dispatch, getState) => {
126126
dispatch(
127127
setBackupEnabled(
128128
url,
129-
ee_features.indexOf("backup_restore") >= 0,
129+
ee_features.indexOf("backup_restore") >= 0 ||
130+
ee_features.indexOf("encrypted_backup_restore") >= 0,
130131
),
131132
);
132133
} catch (e) {

0 commit comments

Comments
 (0)