We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4f30bd commit b5c59b7Copy full SHA for b5c59b7
server.py
@@ -56,7 +56,7 @@ async def deprecation_warning(request: web.Request, handler):
56
"""Middleware to warn about deprecated frontend API paths"""
57
path = request.path
58
59
- if (path.startswith('/scripts/') or path.startswith('/extensions/core/')):
+ if path.startswith("/scripts/ui") or path.startswith("/extensions/core/"):
60
# Only warn once per unique file path
61
if path not in _deprecated_paths_warned:
62
_deprecated_paths_warned.add(path)
0 commit comments