fix: Unicode-Anführungszeichen in context.rs durch ASCII ersetzen [appimage]
Some checks failed
Build AppImage / build (push) Failing after 2m28s
Some checks failed
Build AppImage / build (push) Failing after 2m28s
Die deutschen Guillemets „" (U+201E/U+201C) in einem format!()-Macro brachten den Rust-Parser durcheinander und verursachten 33 Compile-Fehler. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
6a41e2c8c7
commit
64226cea00
1 changed files with 1 additions and 1 deletions
|
|
@ -717,7 +717,7 @@ pub async fn generate_briefing(
|
||||||
for prev_session in sessions.iter().take(3) {
|
for prev_session in sessions.iter().take(3) {
|
||||||
if let Some(ref last_msg) = prev_session.last_message {
|
if let Some(ref last_msg) = prev_session.last_message {
|
||||||
parts.push(format!(
|
parts.push(format!(
|
||||||
"**Session „{}"** ({}): {}",
|
"**Session '{}'** ({}): {}",
|
||||||
prev_session.title,
|
prev_session.title,
|
||||||
&prev_session.updated_at[..10],
|
&prev_session.updated_at[..10],
|
||||||
crate::strutil::safe_truncate(last_msg, 200)
|
crate::strutil::safe_truncate(last_msg, 200)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue