From baa875f5169dd58d23c37ef03bb62a2708327df0 Mon Sep 17 00:00:00 2001 From: goat Date: Mon, 8 Jul 2024 20:50:00 +0200 Subject: [PATCH] autoupdate: add missing space after comma --- Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs b/Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs index de7eb1c1c..6404846f7 100644 --- a/Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs +++ b/Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs @@ -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 ?