openclaw/src/telegram/fetch.ts

14 lines
537 B
TypeScript
Raw Normal View History

2026-01-21 17:29:39 +00:00
import { resolveFetch } from "../infra/fetch.js";
// Bun-only: force native fetch to avoid grammY's Node shim under Bun.
export function resolveTelegramFetch(proxyFetch?: typeof fetch): typeof fetch | undefined {
2026-01-21 17:29:39 +00:00
if (proxyFetch) return resolveFetch(proxyFetch);
const isBun = "Bun" in globalThis || Boolean(process?.versions?.bun);
if (!isBun) return undefined;
2026-01-21 17:29:39 +00:00
const fetchImpl = resolveFetch();
if (!fetchImpl) {
throw new Error("fetch is not available; set channels.telegram.proxy in config");
}
2026-01-21 17:29:39 +00:00
return fetchImpl;
}