diff options
author | crupest <crupest@outlook.com> | 2019-04-22 17:15:06 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-04-22 17:15:06 +0800 |
commit | c288638f3805ef3d8028c75cb248f641a91c835d (patch) | |
tree | df8ffa6162d41c748b14c44a76c4859eca529fee /Timeline/Services/TencentCloudCosService.cs | |
parent | 6a73b71e4af6aa30cf6fca301d954bc01927a8c9 (diff) | |
download | timeline-c288638f3805ef3d8028c75cb248f641a91c835d.tar.gz timeline-c288638f3805ef3d8028c75cb248f641a91c835d.tar.bz2 timeline-c288638f3805ef3d8028c75cb248f641a91c835d.zip |
Fix a bug in cos service. Add avatar api.
Diffstat (limited to 'Timeline/Services/TencentCloudCosService.cs')
-rw-r--r-- | Timeline/Services/TencentCloudCosService.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Timeline/Services/TencentCloudCosService.cs b/Timeline/Services/TencentCloudCosService.cs index f1f52ec5..bc812e57 100644 --- a/Timeline/Services/TencentCloudCosService.cs +++ b/Timeline/Services/TencentCloudCosService.cs @@ -66,6 +66,11 @@ namespace Timeline.Services } if (serverException != null) { + if (serverException.statusCode == 404) + { + t.SetResult(false); + return; + } _logger.LogError(serverException, "An server error occured when test cos object existence. Bucket : {} . Key : {} .", bucket, key); t.SetException(serverException); return; |