Skip to content
Snippets Groups Projects
Commit 2925d24b authored by ale's avatar ale
Browse files

add missing namespace qualifier

parent 7413d390
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ djr.Playlist.prototype.addChunk = function(playlist_chunk) {
songs.push(song);
this.song_map[song] = chunk_id;
});
this.chunk_map[chunk_id] = new PlaylistChunk(songs);
this.chunk_map[chunk_id] = new djr.PlaylistChunk(songs);
this.chunks.push(chunk_id);
return chunk_id;
};
......@@ -208,7 +208,7 @@ djr.Player.prototype.search = function(query) {
return;
}
var chunk_id = this.playlist.addChunk(new PlaylistChunk(songs));
var chunk_id = this.playlist.addChunk(new djr.PlaylistChunk(songs));
djr.debug('search: new chunk ' + chunk_id);
var player = this;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment