This commit is contained in:
2dust
2022-07-27 19:58:06 +08:00
parent 0a912feabb
commit ecd0fc83d2

View File

@@ -324,6 +324,10 @@ namespace clashN.Handler
{
Utils.SaveLog(ex.Message, ex);
_updateFunc(false, ex.Message);
if (ex.InnerException != null)
{
_updateFunc(false, ex.InnerException.Message);
}
}
}