Merge branch 'master' into test

This commit is contained in:
Phan An 2017-06-10 12:36:55 +01:00
commit f448b0e8e3
2 changed files with 1 additions and 14 deletions

View file

@ -126,16 +126,6 @@ class Artist extends Model
return $info;
}
/**
* Get songs *contributed* (in compilation albums) by the artist.
*
* @return \Illuminate\Database\Eloquent\Collection
*/
public function getContributedSongs()
{
return Song::whereContributingArtistId($this->id)->get();
}
/**
* Turn the image name into its absolute URL.
*

View file

@ -118,9 +118,6 @@ class Download
protected function fromArtist(Artist $artist)
{
// Don't forget the contributed songs.
$songs = $artist->songs->merge($artist->getContributedSongs());
return $this->fromMultipleSongs($songs);
return $this->fromMultipleSongs($artist->songs);
}
}