mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-01-31 03:16:42 +01:00
Fixed undefined error for hourly tracks
This commit is contained in:
parent
049c01a0a1
commit
2fcc8bc9ec
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ module.exports = angular.module('ponyfm').controller 'track-stats', [
|
|||
|
||||
statsLoaded = (stats) ->
|
||||
for key, value of stats.playStats
|
||||
labelArray.push value.hour || value.days
|
||||
labelArray.push value.hours || value.days
|
||||
dailyArray.push value.plays
|
||||
|
||||
i = 0
|
||||
|
|
Loading…
Reference in a new issue