style: clean code

This commit is contained in:
Fu Diwei
2024-06-12 12:10:52 +08:00
parent 720bca4f39
commit 39e372fc29
3 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Interceptors
public WechatOpenAIRequestEncryptionInterceptor(string baseUrl, string encodingAESKey, Func<string, bool>? customEncryptedRequestPathMatcher)
{
_baseUrl = baseUrl;
_baseUrl = baseUrl.TrimEnd('/');
_encodingAESKey = encodingAESKey;
_customEncryptedRequestPathMatcher = customEncryptedRequestPathMatcher;
}