improve: handling of invisible videos in snapshot
This commit is contained in:
parent
9a85da0532
commit
09f872b11a
@ -107,7 +107,7 @@ export const takeSnapshotForMilestoneVideoWorker = async (job: Job) => {
|
|||||||
const lastSnapshoted = snapshotedAt;
|
const lastSnapshoted = snapshotedAt;
|
||||||
const stat = await insertVideoStats(client, aid, "snapshotMilestoneVideo");
|
const stat = await insertVideoStats(client, aid, "snapshotMilestoneVideo");
|
||||||
if (typeof stat === "number") {
|
if (typeof stat === "number") {
|
||||||
if (stat === -404 || stat === 62002) {
|
if (stat === -404 || stat === 62002 || stat == 62012) {
|
||||||
await setSnapshotScheduled(aid, true, 6 * 60 * 60);
|
await setSnapshotScheduled(aid, true, 6 * 60 * 60);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -172,7 +172,7 @@ export const takeSnapshotForVideoWorker = async (job: Job) => {
|
|||||||
const { aid } = job.data;
|
const { aid } = job.data;
|
||||||
const stat = await insertVideoStats(client, aid, "getVideoInfo");
|
const stat = await insertVideoStats(client, aid, "getVideoInfo");
|
||||||
if (typeof stat === "number") {
|
if (typeof stat === "number") {
|
||||||
if (stat === -404 || stat === 62002) {
|
if (stat === -404 || stat === 62002 || stat == 62012) {
|
||||||
await setSnapshotScheduled(aid, true, 6 * 60 * 60);
|
await setSnapshotScheduled(aid, true, 6 * 60 * 60);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user