From 93adea0ac9d9dcdf7591e989c30ceda12626e21c Mon Sep 17 00:00:00 2001 From: goat Date: Sun, 21 Apr 2024 17:12:46 +0200 Subject: [PATCH] rethrow Lumina setup exception --- Dalamud/Data/DataManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dalamud/Data/DataManager.cs b/Dalamud/Data/DataManager.cs index d274c9e72..2398cdb16 100644 --- a/Dalamud/Data/DataManager.cs +++ b/Dalamud/Data/DataManager.cs @@ -103,7 +103,8 @@ internal sealed class DataManager : IInternalDisposableService, IDataManager } catch (Exception ex) { - Log.Error(ex, "Could not download data."); + Log.Error(ex, "Could not initialize Lumina"); + throw; } }