diff options
| author | Indrajith K L | 2022-12-05 11:26:04 +0530 |
|---|---|---|
| committer | Indrajith K L | 2022-12-05 11:26:04 +0530 |
| commit | 2cbed2c4ba550d03d3118768d393215d0888e50a (patch) | |
| tree | 6a24eb3376d177d2d4b5d3138c8b9d983383971d | |
| parent | de430cf16660a3d65992ffa7f509e6dfbdae0c57 (diff) | |
| download | retrowave-player-2cbed2c4ba550d03d3118768d393215d0888e50a.tar.gz retrowave-player-2cbed2c4ba550d03d3118768d393215d0888e50a.tar.bz2 retrowave-player-2cbed2c4ba550d03d3118768d393215d0888e50a.zip | |
Fixes in Playlist duration calculation
| -rw-r--r-- | player.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -204,7 +204,7 @@ historyArray.forEach((musicData) => { playListData = `${playListData} -#EXTINF:${Math.ceil(musicData.duration/600)}, ${musicData.title} +#EXTINF:${Math.ceil(musicData.duration/100)}, ${musicData.title} https://retrowave.ru/${musicData.streamUrl} `; }); |
