Update validate.ts

This commit is contained in:
freearhey
2026-08-17 01:12:46 +03:00
parent 82a6cf2451
commit 4d6660623d
+2
View File
@@ -78,11 +78,13 @@ async function main() {
} }
} }
if (!data.isDeleted('stream_id')) {
const streamId = data.getString('stream_id') const streamId = data.getString('stream_id')
if (streamId) { if (streamId) {
errors = errors.concat(validateStreamId(streamId)) errors = errors.concat(validateStreamId(streamId))
} }
} }
}
done() done()
} }