修复bug

This commit is contained in:
pan.wl.2 2024-11-19 11:26:23 +08:00
parent a82e434058
commit 76f6dca881
2 changed files with 602 additions and 301 deletions

View File

@ -72,6 +72,10 @@ public class UrlUtils {
url = "/" + url;
}
if (url.startsWith("/adminapi/static/")) {
return RequestUtils.uri() + url;
}
if (url.startsWith("/api/static/")) {
return RequestUtils.uri() + url.replace("/api/static/", "/adminapi/static/");
}

File diff suppressed because one or more lines are too long