惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
小众软件
小众软件
有赞技术团队
有赞技术团队
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
Stack Overflow Blog
Stack Overflow Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
WordPress大学
WordPress大学
J
Java Code Geeks
罗磊的独立博客
V
Visual Studio Blog
雷峰网
雷峰网
H
Help Net Security
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
F
Fortinet All Blogs

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor(media): share error normalization helper · openc...
vincentkoc · 2026-06-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -15,7 +15,7 @@ import {

1515

} from "../config/model-input.js";

1616

import type { AgentModelConfig } from "../config/types.agents-shared.js";

1717

import type { OpenClawConfig } from "../config/types.js";

18-

import { formatErrorMessage } from "../infra/errors.js";

18+

import { formatErrorMessage, toErrorObject } from "../infra/errors.js";

1919

import { getProviderEnvVars as getDefaultProviderEnvVars } from "../secrets/provider-env-vars.js";

2020
2121

// Shared media-generation runtime helpers for provider fallback, request

@@ -582,7 +582,7 @@ export function throwCapabilityGenerationFailure(params: {

582582

lastError: unknown;

583583

}): never {

584584

if (params.attempts.length <= 1 && params.lastError) {

585-

throw toLintErrorObject(params.lastError, "Non-Error thrown");

585+

throw toErrorObject(params.lastError, "Non-Error thrown");

586586

}

587587

const summary = formatCapabilityFailureAttempts(params.attempts);

588588

throw new Error(

@@ -663,17 +663,3 @@ export function buildNoCapabilityModelConfiguredMessage(params: {

663663

: "If you want a specific provider, also configure that provider's auth/API key first.",

664664

].join(" ");

665665

}

666-
667-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

668-

if (value instanceof Error) {

669-

return value;

670-

}

671-

if (typeof value === "string") {

672-

return new Error(value);

673-

}

674-

const error = new Error(fallbackMessage, { cause: value });

675-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

676-

Object.assign(error, value);

677-

}

678-

return error;

679-

}

Original file line numberDiff line numberDiff line change

@@ -7,7 +7,7 @@ import {

77

readResponseTextSnippet,

88

readResponseWithLimit,

99

} from "@openclaw/media-core/read-response-with-limit";

10-

import { formatErrorMessage } from "../infra/errors.js";

10+

import { formatErrorMessage, toErrorObject } from "../infra/errors.js";

1111

import {

1212

fetchWithSsrFGuard,

1313

withStrictGuardedFetchMode,

@@ -425,7 +425,7 @@ async function readChunkWithIdleTimeout(

425425

(err: unknown) => {

426426

clear();

427427

if (!timedOut) {

428-

reject(toLintErrorObject(err, "Non-Error rejection"));

428+

reject(toErrorObject(err, "Non-Error rejection"));

429429

}

430430

},

431431

);

@@ -700,17 +700,3 @@ async function readRemoteMediaBufferOnce(options: FetchMediaOptions): Promise<Fe

700700

}

701701

}

702702

}

703-
704-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

705-

if (value instanceof Error) {

706-

return value;

707-

}

708-

if (typeof value === "string") {

709-

return new Error(value);

710-

}

711-

const error = new Error(fallbackMessage, { cause: value });

712-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

713-

Object.assign(error, value);

714-

}

715-

return error;

716-

}

Original file line numberDiff line numberDiff line change

@@ -2,6 +2,7 @@

22

import { execFile, type ExecFileOptions } from "node:child_process";

33

import { promisify } from "node:util";

44

import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/string-coerce";

5+

import { toErrorObject } from "../infra/errors.js";

56

import { resolveSystemBin } from "../infra/resolve-system-bin.js";

67

import {

78

MEDIA_FFMPEG_MAX_BUFFER_BYTES,

@@ -64,7 +65,7 @@ export async function runFfprobe(args: string[], options?: MediaExecOptions): Pr

6465

let stdinWriteError: Error | undefined;

6566

const proc = execFile(requireSystemBin("ffprobe"), args, execOptions, (err, stdout) => {

6667

if (err) {

67-

reject(toLintErrorObject(err, "Non-Error rejection"));

68+

reject(toErrorObject(err, "Non-Error rejection"));

6869

return;

6970

}

7071

if (stdinWriteError && !isBrokenPipeError(stdinWriteError)) {

@@ -118,17 +119,3 @@ export function parseFfprobeCodecAndSampleRate(stdout: string): {

118119

sampleRateHz: parseFfprobeSampleRateHz(sampleRateRaw),

119120

};

120121

}

121-
122-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

123-

if (value instanceof Error) {

124-

return value;

125-

}

126-

if (typeof value === "string") {

127-

return new Error(value);

128-

}

129-

const error = new Error(fallbackMessage, { cause: value });

130-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

131-

Object.assign(error, value);

132-

}

133-

return error;

134-

}

Original file line numberDiff line numberDiff line change

@@ -14,6 +14,7 @@ import {

1414

} from "@openclaw/media-core/file-name";

1515

import { detectMime, extensionForMime } from "@openclaw/media-core/mime";

1616

import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";

17+

import { toErrorObject } from "../infra/errors.js";

1718

import { fileStore } from "../infra/file-store.js";

1819

import { sanitizeUntrustedFileName } from "../infra/fs-safe-advanced.js";

1920

import { isPathInside } from "../infra/fs-safe.js";

@@ -305,7 +306,7 @@ async function downloadToFile(

305306

})

306307

.catch(async (err: unknown) => {

307308

await fs.rm(dest, { force: true }).catch(() => {});

308-

reject(toLintErrorObject(err, "Non-Error rejection"));

309+

reject(toErrorObject(err, "Non-Error rejection"));

309310

});

310311

});

311312

req.on("error", reject);

@@ -752,17 +753,3 @@ export async function deleteMediaBuffer(id: string, subdir = "inbound"): Promise

752753

const relativePath = resolveMediaRelativePath(id, subdir, "deleteMediaBuffer");

753754

await openMediaStore().remove(relativePath);

754755

}

755-
756-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

757-

if (value instanceof Error) {

758-

return value;

759-

}

760-

if (typeof value === "string") {

761-

return new Error(value);

762-

}

763-

const error = new Error(fallbackMessage, { cause: value });

764-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

765-

Object.assign(error, value);

766-

}

767-

return error;

768-

}