Fixes linter issues

This commit is contained in:
freearhey
2025-07-29 04:31:55 +03:00
parent 09b365ca73
commit 307cfe4b99
5 changed files with 7 additions and 7 deletions

View File

@@ -63,7 +63,7 @@ async function main() {
logger.info('saving...')
const groupedStreams = streams.groupBy((stream: Stream) => stream.getFilepath())
for (let filepath of groupedStreams.keys()) {
for (const filepath of groupedStreams.keys()) {
const streams = groupedStreams.get(filepath) || []
if (!streams.length) return