autoupdate: add missing space after comma

This commit is contained in:
goat 2024-07-08 20:50:00 +02:00
parent 1279f04bbf
commit baa875f516

View file

@ -496,7 +496,7 @@ internal class AutoUpdateManager : IServiceType
"AutoUpdateUpdatesAvailableContentPlural",
"There are {0} plugins that can be updated:"),
updatablePlugins.Count))
+ "\n\n" + string.Join(",", updatablePlugins.Select(x => x.InstalledPlugin.Manifest.Name));
+ "\n\n" + string.Join(", ", updatablePlugins.Select(x => x.InstalledPlugin.Manifest.Name));
public static string NotificationContentUpdatesAvailableMinimized(int numUpdates)
=> numUpdates == 1 ?