fix: trace video default mode changed from 'debug' to 'normal'

This commit is contained in:
Accusys
2026-05-14 15:00:35 +08:00
parent 6927415c41
commit 1497b53e82

View File

@@ -261,7 +261,7 @@ async fn trace_video(
) -> Result<impl IntoResponse, StatusCode> {
use axum::http::header;
let mode = params.get("mode").map(|s| s.as_str()).unwrap_or("debug");
let mode = params.get("mode").map(|s| s.as_str()).unwrap_or("normal");
let videos_table = schema::table_name("videos");
let row: Option<(String, f64, i32, i32)> = sqlx::query_as(&format!(