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

View File

@@ -322,8 +322,12 @@ namespace clashN.Handler
}
catch (Exception ex)
{
Utils.SaveLog(ex.Message, ex);
Utils.SaveLog(ex.Message, ex);
_updateFunc(false, ex.Message);
if (ex.InnerException != null)
{
_updateFunc(false, ex.InnerException.Message);
}
}
}