From 8d653c3a8be0e474e6392fd770563c529a71dc54 Mon Sep 17 00:00:00 2001 From: Yannick Chiron Date: Mon, 23 Aug 2021 12:34:29 +0200 Subject: [PATCH] fix: use unique ID in `manifest.webapp` permissions Permissions for `com.bitwarden.contacts` and `io.cozy.contacts` were using the same ID With this configuration `com.bitwarden.contacts` rule was overwritten by `io.cozy.contacts` that is declared later in the json This fix is related to this issue: cozy/cozy-stack#3118 --- manifest.webapp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.webapp b/manifest.webapp index 50e261d96..5b94bb5e0 100644 --- a/manifest.webapp +++ b/manifest.webapp @@ -69,7 +69,7 @@ "type": "com.bitwarden.organizations", "verbs": ["ALL"] }, - "contacts": { + "contacts_bitwarden": { "description": "Required to share passwords with other people", "type": "com.bitwarden.contacts", "verbs": ["ALL"]