fix: resolve #12770 - update Antigravity default model and trim leading whitespace in BlueBubbles replies

This commit is contained in:
Jean Carlos Nunez
2026-02-16 16:25:33 -05:00
committed by Peter Steinberger
parent 0af795287a
commit e179d453c7
4 changed files with 5 additions and 4 deletions

View File

@@ -322,7 +322,7 @@ export async function sendMessageBlueBubbles(
text: string,
opts: BlueBubblesSendOpts = {},
): Promise<BlueBubblesSendResult> {
const trimmedText = text ?? "";
const trimmedText = (text ?? "").trimStart();
if (!trimmedText.trim()) {
throw new Error("BlueBubbles send requires text");
}