mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
Remove limitation of only scrobbling tracks longer than 30 seconds
This commit is contained in:
parent
743e469795
commit
8b62a58b4c
1 changed files with 1 additions and 5 deletions
|
@ -242,11 +242,7 @@ const Player = () => {
|
|||
|
||||
// See https://www.last.fm/api/scrobbling#when-is-a-scrobble-a-scrobble
|
||||
const progress = (info.currentTime / info.duration) * 100
|
||||
if (
|
||||
isNaN(info.duration) ||
|
||||
info.duration < 30 ||
|
||||
(progress < 50 && info.currentTime < 240)
|
||||
) {
|
||||
if (isNaN(info.duration) || (progress < 50 && info.currentTime < 240)) {
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue