Skip to content

Commit f2a8c14

Browse files
committed
Actually fix http permission for use with Ollama
In my previous commit I sloppily used the glob pattern in the place of the port, rather than path.
1 parent 1312e94 commit f2a8c14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/gitbutler-tauri/capabilities/main.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"identifier": "http:default",
2222
"allow": [
2323
{
24-
"url": "http://127.0.0.1:**"
24+
"url": "http://127.0.0.1:*/**"
2525
},
2626
{
27-
"url": "http://localhost:**"
27+
"url": "http://localhost:*/**"
2828
}
2929
]
3030
}

0 commit comments

Comments
 (0)