fix(tenpayv3): leak dispose

This commit is contained in:
Fu Diwei 2025-07-13 22:33:54 +08:00
parent 992bbf1ee0
commit f7ad30e724

View File

@ -155,5 +155,15 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.ExtendedSDK.Global
return result;
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
if (disposing)
{
ProxyClient.Dispose();
}
}
}
}