fix build error

This commit is contained in:
bluepilledgreat 2025-03-28 19:30:38 +00:00
parent 90316ae4e7
commit 2877be889c

View File

@ -92,8 +92,8 @@ namespace Bloxstrap.Utility
if (response.State == "Pending")
App.Logger.WriteLine(LOG_IDENT, $"{response.TargetId} is still pending");
else if (item.State == "Error")
App.Logger.WriteLine(LOG_IDENT, $"{item.TargetId} got error code {item.ErrorCode} ({item.ErrorMessage})");
else if (response.State == "Error")
App.Logger.WriteLine(LOG_IDENT, $"{response.TargetId} got error code {response.ErrorCode} ({response.ErrorMessage})");
else if (response.State != "Completed")
App.Logger.WriteLine(LOG_IDENT, $"{response.TargetId} got \"{response.State}\"");