File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# 版本更新日志
22
3+ ## v0.0.4
4+
5+ 发布时间:2026-05-24
6+
7+ ### 修复
8+
9+ - 过期面板登录态请求不再写入容器运行日志。
10+ - 旧浏览器页面、旧手机页面或未刷新的面板标签页可能继续用失效 token 轮询接口。
11+ - 这类请求属于正常鉴权拒绝,不影响 Emby 反代和播放,不再输出 ` invalid or expired session ` 日志。
12+
13+ ### 验证
14+
15+ - ` cargo fmt --check `
16+ - ` cargo clippy --all-targets -- -D warnings `
17+ - ` cargo test `
18+
319## v0.0.3
420
521发布时间:2026-05-24
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ impl AppError {
6464impl IntoResponse for AppError {
6565 fn into_response ( self ) -> Response {
6666 match & self {
67- Self :: Unauthorized ( _) => tracing :: info! ( error = % self , "request unauthorized" ) ,
67+ Self :: Unauthorized ( _) => { }
6868 Self :: Validation ( _) => tracing:: warn!( error = %self , "request validation failed" ) ,
6969 _ => tracing:: error!( error = %self , "request failed" ) ,
7070 }
You can’t perform that action at this time.
0 commit comments