Skip to content

Commit

Permalink
Update main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
rern committed Jun 9, 2023
1 parent ffbe1f2 commit 5fe100b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions srv/http/assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -397,8 +397,8 @@ $( '#displayplaylist' ).on( 'click', function() {
}
if ( 'coverTL' in V ) $( '#coverTL' ).trigger( 'click' );
var keys = Object.keys( chkplaylist );
var values = [];
keys.forEach( k => values.push( D[ k ] ) );
var values = {};
keys.forEach( k => values[ k ] = D[ k ] );
info( {
icon : 'playlist'
, title : 'Playlist'
Expand Down

0 comments on commit 5fe100b

Please sign in to comment.