Files
risuai/src-tauri
kwaroran d68bf50e34 fix: allow HTTP requests to localhost with custom ports (#859)
# PR Checklist
- [ ] Have you checked if it works normally in all models? *Ignore this
if it doesn't use models.*
- [ ] Have you checked if it works normally in all web, local, and node
hosted versions? If it doesn't, have you blocked it in those versions?
- [ ] Have you added type definitions?

# Description

While testing image generation with ComfyUI, I encountered a permission
error when trying to send requests to the local ComfyUI server. The
application was throwing the following error:

`url not allowed on the configured scope: http://localhost:8188/prompt`

## Solution
Added a wildcard URL pattern to `migrated.json` that explicitly allows
connections to localhost with any port number:

```json
{
  "url": "http://*:**"
}
2025-05-24 20:23:39 +09:00
..
2023-05-07 12:41:45 +09:00
2023-07-08 15:24:18 +09:00
2025-02-26 08:06:08 +09:00
2024-01-16 17:52:33 +09:00
2023-05-07 12:41:45 +09:00
2024-10-09 20:07:59 +09:00
2025-05-17 03:28:12 +09:00