Merge pull request #120 from stragu/patch-1

FMA importer: add "stream for free" link
This commit is contained in:
Laurent Monin 2016-08-29 12:03:59 +02:00 committed by GitHub
commit 74005bf653

View file

@ -576,6 +576,15 @@ function Parsefmarelease(albumobject, trackobject) {
});
}
// 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) {
parse_MM_DD_YYYY(albumobject.album_date_released, fmarelease);