diff --git a/CreamInstaller/CreamInstaller.csproj b/CreamInstaller/CreamInstaller.csproj
index 01a9992..928e11f 100644
--- a/CreamInstaller/CreamInstaller.csproj
+++ b/CreamInstaller/CreamInstaller.csproj
@@ -5,7 +5,7 @@
True
Resources\ini.ico
true
- 2.4.1.0
+ 2.4.1.1
Resources\ini.ico
Automatically generates and installs CreamAPI files for Steam games on the user's computer. It can also generate and install CreamAPI for the Paradox Launcher should the user select a Paradox Interactive game.
diff --git a/CreamInstaller/Forms/SelectForm.cs b/CreamInstaller/Forms/SelectForm.cs
index c34476a..048600b 100644
--- a/CreamInstaller/Forms/SelectForm.cs
+++ b/CreamInstaller/Forms/SelectForm.cs
@@ -246,12 +246,8 @@ internal partial class SelectForm : CustomForm
dlcIconStaticId ??= dlcAppInfo.Value?.GetChild("common")?.GetChild("logo")?.ToString();
}
if (Program.Canceled) return;
- if (string.IsNullOrWhiteSpace(dlcName))
- {
- RemoveFromRemainingDLCs(id.ToString());
- return;
- }
- dlc[id] = /*$"[{id}] " +*/ (dlcName, dlcIconStaticId);
+ if (string.IsNullOrWhiteSpace(dlcName)) dlcName = "Unnamed DLC";
+ dlc[id] = (dlcName, dlcIconStaticId);
RemoveFromRemainingDLCs(id.ToString());
progress.Report(++CompleteTasks);
});