|
@@ -40,7 +40,7 @@ public class TencentUploadHandler implements UploadHandler {
|
|
|
String appid = AssertUtils.nonempty(properties.getAppid(), () -> "Tencent upload appid is missing");
|
|
|
String secret = AssertUtils.nonempty(properties.getSecret(), () -> "Tencent upload secret is missing");
|
|
|
String region = AssertUtils.nonempty(properties.getRegion(), () -> "Tencent upload region is missing");
|
|
|
- this.domain = AssertUtils.nonempty(properties.getDomain(), () -> "Tencent upload access domain is missing");
|
|
|
+ this.domain = AssertUtils.nonempty(properties.getDomain(), () -> "Tencent upload domain is missing");
|
|
|
this.directory = AssertUtils.nonempty(properties.getDirectory(), () -> "Tencent upload directory is missing");
|
|
|
|
|
|
// 初始化COS客户端
|