Extract LastFm module

This commit is contained in:
Claudio Ortolina
2025-02-21 16:02:18 +00:00
parent 4835d4bdee
commit 889ba61e4c
5 changed files with 67 additions and 69 deletions
@@ -27,7 +27,7 @@ defmodule MusicLibraryWeb.ArtistLive.Show do
|> assign(:collection_records_count, Enum.count(grouped_artist_records.collection))
|> assign(:wishlist_records_count, Enum.count(grouped_artist_records.wishlist))
|> assign_async(:artist_info, fn ->
with {:ok, artist_info} <- Artists.get_artist_info(artist) do
with {:ok, artist_info} <- LastFm.get_artist_info(artist.musicbrainz_id, artist.name) do
{:ok, %{artist_info: artist_info}}
end
end)