Skip to content

Commit

Permalink
fix(core): extend allowlist with app's allowlist, closes #5650 (#5652)
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Nov 18, 2022
1 parent ed43ff3 commit bb25108
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changes/app-show-hide.md
@@ -0,0 +1,5 @@
---
"tauri-utils": "patch"
---

Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.
1 change: 1 addition & 0 deletions core/tauri-utils/src/config.rs
Expand Up @@ -2147,6 +2147,7 @@ impl Allowlist for AllowlistConfig {
features.extend(self.protocol.to_features());
features.extend(self.process.to_features());
features.extend(self.clipboard.to_features());
features.extend(self.app.to_features());
features
}
}
Expand Down

0 comments on commit bb25108

Please sign in to comment.