[style](trx-frontend): format http audio code

Co-authored-by: OpenAI Codex <codex@openai.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-03 19:41:06 +01:00
parent d72acf9e90
commit da9d762ad2
@@ -235,9 +235,7 @@ pub fn clear_vdes_history(context: &FrontendRuntimeContext) {
}
fn timestamp_ms_for_elapsed(elapsed: Duration) -> i64 {
let wall_clock = SystemTime::now()
.checked_sub(elapsed)
.unwrap_or(UNIX_EPOCH);
let wall_clock = SystemTime::now().checked_sub(elapsed).unwrap_or(UNIX_EPOCH);
let millis = wall_clock
.duration_since(UNIX_EPOCH)
.unwrap_or_default()