diff --git a/OpenRA.Mods.RA/Widgets/Logic/ModBrowserLogic.cs b/OpenRA.Mods.RA/Widgets/Logic/ModBrowserLogic.cs index 20baddfc9d..c0395ff430 100644 --- a/OpenRA.Mods.RA/Widgets/Logic/ModBrowserLogic.cs +++ b/OpenRA.Mods.RA/Widgets/Logic/ModBrowserLogic.cs @@ -150,7 +150,7 @@ namespace OpenRA.Mods.RA.Widgets.Logic void SelectMod(ModMetadata mod) { selectedMod = mod; - selectedAuthor = "By " + mod.Author ?? "unknown author"; + selectedAuthor = "By " + (mod.Author ?? "unknown author"); selectedDescription = (mod.Description ?? "").Replace("\\n", "\n"); var selectedIndex = Array.IndexOf(allMods, mod); if (selectedIndex - modOffset > 4)