@owloops/browserbird 1.8.3 → 1.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -193,8 +193,8 @@ function unknownSubcommand(subcommand, command, validCommands) {
|
|
|
193
193
|
/** @fileoverview ASCII banner displayed on daemon startup and in help text. */
|
|
194
194
|
const pkg = createRequire(import.meta.url)("../package.json");
|
|
195
195
|
const buildInfo = [];
|
|
196
|
-
buildInfo.push(`commit: ${"
|
|
197
|
-
buildInfo.push(`built: 2026-03-22T17:
|
|
196
|
+
buildInfo.push(`commit: ${"0c9ac36840820c423556f319162084f0279de38d".substring(0, 7)}`);
|
|
197
|
+
buildInfo.push(`built: 2026-03-22T17:39:52+04:00`);
|
|
198
198
|
const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
|
|
199
199
|
const VERSION = `browserbird ${pkg.version}${buildString}`;
|
|
200
200
|
const BIRD = [
|
|
@@ -4493,7 +4493,7 @@ function createHandler(client, getConfig, signal, getTeamId, getChannelNameToId)
|
|
|
4493
4493
|
let toolSuccesses = 0;
|
|
4494
4494
|
function isStreamExpired(err) {
|
|
4495
4495
|
const msg = err instanceof Error ? err.message : String(err);
|
|
4496
|
-
return msg.includes("not_in_streaming_state") || msg.includes("streaming");
|
|
4496
|
+
return msg.includes("not_in_streaming_state") || msg.includes("streaming") || msg.includes("msg_too_long");
|
|
4497
4497
|
}
|
|
4498
4498
|
async function safeAppend(content) {
|
|
4499
4499
|
if (streamDead) {
|