We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18c6203 commit 0f59cb6Copy full SHA for 0f59cb6
apps/workers/videoWorker.ts
@@ -115,7 +115,11 @@ async function runWorker(job: DequeuedJob<ZVideoRequest>) {
115
assetPath = downloadPath;
116
} catch (e) {
117
const err = e as Error;
118
- if (err.message.includes("ERROR: Unsupported URL:")) {
+ if (
119
+ err.message.includes(
120
+ "ERROR: Unsupported URL:" || err.message.includes("No media found"),
121
+ )
122
+ ) {
123
logger.info(
124
`[VideoCrawler][${jobId}] Skipping video download from "${url}", because it's not one of the supported yt-dlp URLs`,
125
);
0 commit comments