mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
Fix routes (#3790)
This commit is contained in:
parent
028a583bef
commit
d7f0964266
@ -538,8 +538,10 @@ class PromptServer():
|
|||||||
# prefix are supported.
|
# prefix are supported.
|
||||||
api_routes = web.RouteTableDef()
|
api_routes = web.RouteTableDef()
|
||||||
for route in self.routes:
|
for route in self.routes:
|
||||||
assert isinstance(route, web.RouteDef)
|
# Custom nodes might add extra static routes. Only process non-static
|
||||||
api_routes.route(route.method, "/api" + route.path)(route.handler, **route.kwargs)
|
# routes to add /api prefix.
|
||||||
|
if isinstance(route, web.RouteDef):
|
||||||
|
api_routes.route(route.method, "/api" + route.path)(route.handler, **route.kwargs)
|
||||||
self.app.add_routes(api_routes)
|
self.app.add_routes(api_routes)
|
||||||
self.app.add_routes(self.routes)
|
self.app.add_routes(self.routes)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user