diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index 69ce9aa22..d8544a1e4 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -1127,7 +1127,7 @@ namespace Dalamud.Interface.Internal.Windows else if (!string.IsNullOrWhiteSpace(manifest.Description)) { const int punchlineLen = 200; - var firstLine = manifest.Description.Split()[0]; + var firstLine = manifest.Description.Split(new [] { '\r', '\n' })[0]; ImGui.TextWrapped(firstLine.Length < punchlineLen ? firstLine