Skip to content

Commit 1481b41

Browse files
committed
chore: less log repo getVideos
1 parent 925c098 commit 1481b41

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/repository.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,8 @@ export default class Repository {
6868
const videos = this.videos
6969
.sort((a, b) => +new Date(b.publishedAt) - +new Date(a.publishedAt))
7070
.sort((a, b) => (b.ignored ? -1 : 0) + (a.ignored ? 1 : 0))
71-
.filter((_, i) => i < 500)
72-
73-
console.log('get videos', videos.length)
71+
// .filter((_, i) => i < 500)
72+
// console.log('get videos', videos.length)
7473

7574
return videos
7675
}

0 commit comments

Comments
 (0)