Skip to content

Commit

Permalink
fixed bug in playlist modification datetime - ignored timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
takeit committed Apr 1, 2015
1 parent 0039879 commit f0ff2e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ angular.module('playlistsApp').factory('Playlist', [
postParams = parseAndBuildParams(logList);

if (playlist.articlesModificationTime !== undefined) {
playlistDateTime = new Date(playlist.articlesModificationTime);
playlistDateTime = playlist.articlesModificationTime;
}

$http({
Expand Down

0 comments on commit f0ff2e5

Please sign in to comment.