Skip to content

Commit 078a69d

Browse files
committed
Fix glob pattern for http:allow-fetch permission
1 parent b52d562 commit 078a69d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

crates/gitbutler-tauri/capabilities/main.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
"$schema": "../gen/schemas/desktop-schema.json",
33
"identifier": "main",
44
"description": "permissions for gitbutler tauri",
5-
"windows": [
6-
"*"
7-
],
5+
"windows": ["*"],
86
"local": true,
97
"permissions": [
108
"core:default",
@@ -23,10 +21,10 @@
2321
"identifier": "http:default",
2422
"allow": [
2523
{
26-
"url": "http://127.0.0.1:*"
24+
"url": "http://127.0.0.1:**"
2725
},
2826
{
29-
"url": "http://localhost:*"
27+
"url": "http://localhost:**"
3028
}
3129
]
3230
}

0 commit comments

Comments
 (0)