Skip to content

fix: double slash in Proxmox network node list API endpoint #44

@t0kubetsu

Description

@t0kubetsu

Problem

The Proxmox network node list endpoint in src/services/proxmox/api.ts contains a typo that produces a malformed URL:

// line 427
return query('/v0/admin/proxmox/network//node/list', { proxmox_node: node })
//                                      ^^ double slash

This causes a 404 on every call to network.listNodeInterfaces() because the backend receives a path with a double slash that does not match any route.

Expected

return query('/v0/admin/proxmox/network/node/list', { proxmox_node: node })

Impact

All calls to retrieve node-level network interfaces silently fail at runtime.

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions