Various updates.

This commit is contained in:
2025-03-30 23:18:40 -04:00
parent b7ba8341a1
commit f7cacf0bbb
11 changed files with 322 additions and 57 deletions

View File

@@ -1,5 +1,6 @@
using Microsoft.UI.Xaml.Data;
using System;
using System.Collections.Generic;
namespace Harmonia.WinUI.Converters;
@@ -12,7 +13,7 @@ public partial class ArtistsToStringConverter : IValueConverter
public object Convert(object value, Type targetType, object parameter, string language)
{
if (value is not string[] artists)
if (value is not ICollection<string> artists)
return string.Empty;
return string.Join(" / ", artists);