mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
Merge branch 'master' into test
This commit is contained in:
commit
f448b0e8e3
2 changed files with 1 additions and 14 deletions
|
@ -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.
|
||||
*
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue