From eccc584b2ce77ed4ad19a688f4eed467e97f0394 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Wed, 14 Jun 2023 23:27:28 +1000 Subject: [PATCH] main: Fixed error check in reveal all --- FireWallet/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FireWallet/MainForm.cs b/FireWallet/MainForm.cs index 1295d1f..900a760 100644 --- a/FireWallet/MainForm.cs +++ b/FireWallet/MainForm.cs @@ -1804,7 +1804,7 @@ namespace FireWallet return; } JObject resp = JObject.Parse(response); - if (resp["error"] != null) + if (resp["error"].ToString() != "") { AddLog("Error sending reveal"); AddLog(resp["error"].ToString());