Change minimum progress duration

This commit is contained in:
2022-01-19 19:02:17 +01:00
parent 99f07bcab3
commit a4417a1bfe

View File

@@ -10,7 +10,7 @@ async function LogSpotifyHistory(): Promise<void> {
if (!current.is_playing) return
if (current.progress && current.progress < 1000) return
if (current.progress && current.progress < 5000) return
const last_entry = await Song.query().where('item_id', current.id!).orderBy('date', 'desc').first()