Replies: 1 comment
-
|
Hi @maur0s, yes, this looks like a valid macOS/Tauri permission issue. On macOS, apps that need to discover or connect to services on the local network may require A possible addition would be: <key>NSLocalNetworkUsageDescription</key>
<string>OpenHuman connects to its local AI service and background core process running on this device. This local connection is required for all features to work.</string>
<key>NSBonjourServices</key>
<array>
<string>_http._tcp</string>
<string>_https._tcp</string>
</array>It would also be worth confirming whether the app uses Bonjour service discovery. If it only connects directly to This should probably be tracked as a macOS packaging/config fix for the Tauri app. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I think the file app/src-tauri/Info.plist needs to add the following? Im unable to use the app in osx because i dont think it can use local networks permissions as it never asked.
`NSLocalNetworkUsageDescription
OpenHuman connects to its local AI service and background core process running on this device. This local connection is required for all features to work.
NSBonjourServices
_http._tcp
_https._tcp
`
Beta Was this translation helpful? Give feedback.
All reactions