Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #446 from chrismou/song-title-element-reference
Browse files Browse the repository at this point in the history
Mini player & scrobbling broken due to element ID change
  • Loading branch information
chrismou committed Dec 13, 2015
2 parents ff77e26 + 8f9f0a1 commit e6ca0d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Changed
* Updated to work with Google's latest updates ([#397](https://github.com/radiant-player/radiant-player-mac/pull/397))
* Updated referenced selectors to reflect Google's changes ([#446](https://github.com/radiant-player/radiant-player-mac/pull/446))

### Fixed
* Fixed tracks being "randomly" loved/unloved on last.fm ([#426](https://github.com/radiant-player/radiant-player-mac/pull/426))
Expand Down
2 changes: 1 addition & 1 deletion radiant-player-mac/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ if (typeof window.MusicAPI === 'undefined') {
if (name == 'now-playing-info-wrapper') {
var now = new Date();

var title = document.querySelector('#player #player-song-title');
var title = document.querySelector('#player #currently-playing-title');
var artist = document.querySelector('#player #player-artist');
var album = document.querySelector('#player .player-album');
var art = document.querySelector('#player #playingAlbumArt');
Expand Down

0 comments on commit e6ca0d7

Please sign in to comment.