mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-13 03:42:27 +00:00
add "stream for free" url if streamable
This commit is contained in:
parent
8eb66c1e4b
commit
4c2313812d
1 changed files with 8 additions and 0 deletions
|
@ -575,6 +575,14 @@ function Parsefmarelease(albumobject, trackobject) {
|
|||
'link_type': MBImport.URL_TYPES.other_databases
|
||||
});
|
||||
}
|
||||
|
||||
// Check to see if a play button is available
|
||||
if ($(".sqbtn-playpage").length) {
|
||||
// Release URL
|
||||
fmarelease.urls.push({
|
||||
'url': albumobject.album_url,
|
||||
'link_type': MBImport.URL_TYPES.stream_for_free
|
||||
});
|
||||
|
||||
// Release date
|
||||
if (albumobject.album_date_released) {
|
||||
|
|
Loading…
Reference in a new issue