publish 2.0.0.rc14

This commit is contained in:
曾文豪
2024-08-05 14:59:55 +08:00
parent ad90c83cf7
commit a22467d4f1
13 changed files with 24 additions and 24 deletions

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng.springboot-parent</groupId>
<artifactId>springboot-parent</artifactId>
<version>2.0.0.rc13</version>
<version>2.0.0.rc14</version>
</parent>
<artifactId>springboot-platform</artifactId>

View File

@@ -75,7 +75,7 @@ public class PlatformDingConfig {
} else {
request = OkHttpUtil.ofPost(url, body);
}
request.newBuilder().header("x-acs-dingtalk-access-token", accessToken);
request = request.newBuilder().header("x-acs-dingtalk-access-token", accessToken).build();
try {
Response response = OkHttpUtil.ofHttpClient().build().newCall(request).execute();
if (response.isSuccessful() && response.body() != null) {