fix(core): wrong ACL validation on multiwebview contexts (#8995)

This commit is contained in:
Lucas Fernandes Nogueira 2024-02-27 11:42:11 -03:00 committed by GitHub
parent 5a19147b06
commit e1d5b79063
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"tauri": patch:bug
---
Fixes capability webview label check.

View File

@ -1153,8 +1153,8 @@ fn main() {
.unwrap()
.resolve_access(
&request.cmd,
message.webview.label(),
message.webview.window().label(),
message.webview.label(),
&acl_origin,
)
.cloned();