diff --git a/fablednetmon/core/plugin_manager.py b/fablednetmon/core/plugin_manager.py index 6c4f885..31004ea 100644 --- a/fablednetmon/core/plugin_manager.py +++ b/fablednetmon/core/plugin_manager.py @@ -113,7 +113,7 @@ def load_plugins(app: "Quart") -> None: if hasattr(module, "get_blueprint"): try: bp = module.get_blueprint() - app.register_blueprint(bp, url_prefix=f"/plugins/{name}") + app.register_blueprint(bp, url_prefix=f"/plugins/{name}/") logger.info("Plugin %r: blueprint registered at /plugins/%s/", name, name) except Exception: logger.exception("Plugin %r: get_blueprint() raised", name)