feat(用户): 添加用户余额日志分页查询功能

修复AnyTLSUri端口使用错误问题
添加订阅列表排序功能
更新.gitignore移除日志文件忽略
完善流量通知模板变量
This commit is contained in:
2025-08-27 08:15:31 -07:00
parent 41423ca666
commit b16ac2cb9b
13 changed files with 23 additions and 10 deletions
+1 -1
View File
@@ -296,7 +296,7 @@ func AnyTLSUri(data proxy.Proxy, uuid string) string {
u := url.URL{
Scheme: "anytls",
User: url.User(uuid),
Host: net.JoinHostPort(data.Server, strconv.Itoa(anytls.Port)),
Host: net.JoinHostPort(data.Server, strconv.Itoa(data.Port)), // 修复:使用最终端口 data.Port
RawQuery: query.Encode(),
Fragment: data.Name,
}