update: sync for alm

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-02-20 12:59:02 -03:00
parent 4987a15858
commit 138ad31a32
2 changed files with 2 additions and 7 deletions

View file

@ -922,17 +922,12 @@ async fn handle_task_progress_ws_proxy(
// Log manifest_update messages for debugging // Log manifest_update messages for debugging
let is_manifest = text.contains("manifest_update"); let is_manifest = text.contains("manifest_update");
if is_manifest { if is_manifest {
info!(
"[WS_PROXY] Forwarding manifest_update to client: {}...",
&text[..text.len().min(200)]
);
} else if text.contains("task_progress") { } else if text.contains("task_progress") {
debug!("[WS_PROXY] Forwarding task_progress to client"); debug!("[WS_PROXY] Forwarding task_progress to client");
} }
match client_tx.send(AxumMessage::Text(text)).await { match client_tx.send(AxumMessage::Text(text)).await {
Ok(()) => { Ok(()) => {
if is_manifest { if is_manifest {
info!("[WS_PROXY] manifest_update SENT successfully to client");
} }
} }
Err(e) => { Err(e) => {

View file

@ -253,7 +253,7 @@
.bot-message { .bot-message {
background: var(--chat-color2, var(--surface, var(--card, #2a2a2a))); background: var(--chat-color2, var(--surface, var(--card, #2a2a2a)));
color: #000000 !important; color: #ffffff !important;
border-bottom-left-radius: 4px; border-bottom-left-radius: 4px;
border: 1px solid var(--chat-color1, rgba(0, 0, 0, 0.2)); border: 1px solid var(--chat-color1, rgba(0, 0, 0, 0.2));
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
@ -270,7 +270,7 @@
.bot-message h2, .bot-message h2,
.bot-message h3, .bot-message h3,
.bot-message h4 { .bot-message h4 {
color: #000000 !important; color: #ffffff !important;
} }
/* Markdown content in bot messages */ /* Markdown content in bot messages */