Fix useless condition
This commit is contained in:
parent
4d6952361e
commit
1db57e6f96
|
@ -120,7 +120,7 @@ export class VideoModelBuilder {
|
||||||
private grabSeparateStreamingPlaylistFiles (rowsStreamingPlaylist?: SQLRow[]) {
|
private grabSeparateStreamingPlaylistFiles (rowsStreamingPlaylist?: SQLRow[]) {
|
||||||
if (!rowsStreamingPlaylist) return
|
if (!rowsStreamingPlaylist) return
|
||||||
|
|
||||||
for (const row of rowsStreamingPlaylist || []) {
|
for (const row of rowsStreamingPlaylist) {
|
||||||
const id = row['VideoStreamingPlaylists.id']
|
const id = row['VideoStreamingPlaylists.id']
|
||||||
if (!id) continue
|
if (!id) continue
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue