예제 #1
0
        private async void LoadRelated()
        {
            var t = TaskStarted("artists");

            try
            {
                RelatedArtists = await _discoveryService.GetArtistRelated(Artist.Id);
            }
            catch (Exception ex)
            {
                Logger.Error(ex, "Unable to load artist's related");
            }
            finally
            {
                t.Finish();
            }
        }