MCPcopy Create free account
hub / github.com/TeleBoxOrg/TeleBox_Plugins / isTimeoutError

Function isTimeoutError

zpr/zpr.ts:315–322  ·  view source on GitHub ↗
(error: any)

Source from the content-addressed store, hash-verified

313 error.message?.includes('timeout') ||
314 error.message?.includes('canceled') ||
315 error.message?.includes('cancelled') ||
316 error.name === 'AbortError' ||
317 error.code === 'ETIMEDOUT';
318};
319
320interface DownloadResult {
321 mediaGroup: MediaGroup | null;
322 usedProxy?: string; // 成功时使用的代理
323 failureReason?: 'network' | '404' | 'other'; // 失败原因
324 hadNetworkFailures?: boolean; // 是否在成功前遇到过网络错误
325 failedProxies?: string[]; // 失败的代理列表

Callers 1

downloadSingleImageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected