mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2024-11-24 08:08:14 +11:00
main: Fixed error check in reveal all
This commit is contained in:
parent
cf2f68f2b3
commit
eccc584b2c
@ -1804,7 +1804,7 @@ namespace FireWallet
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
JObject resp = JObject.Parse(response);
|
JObject resp = JObject.Parse(response);
|
||||||
if (resp["error"] != null)
|
if (resp["error"].ToString() != "")
|
||||||
{
|
{
|
||||||
AddLog("Error sending reveal");
|
AddLog("Error sending reveal");
|
||||||
AddLog(resp["error"].ToString());
|
AddLog(resp["error"].ToString());
|
||||||
|
Loading…
Reference in New Issue
Block a user