S3 Storage korrektur
All checks were successful
Build & Deploy PLDpro.Web Test to 192.168.1.100 / build-and-deploy (push) Successful in 1m9s
All checks were successful
Build & Deploy PLDpro.Web Test to 192.168.1.100 / build-and-deploy (push) Successful in 1m9s
This commit is contained in:
@@ -35,7 +35,7 @@ public sealed class S3StorageService(IAmazonS3 s3) : IStorageService
|
||||
}, ct);
|
||||
|
||||
items.AddRange(resp.S3Objects.Select(o => new ObjectItem(o.Key, o.Size, o.LastModified)));
|
||||
token = resp.IsTruncated ? resp.NextContinuationToken : null;
|
||||
token = (bool)resp.IsTruncated ? resp.NextContinuationToken : null;
|
||||
} while (token is not null);
|
||||
|
||||
return items;
|
||||
|
||||
Reference in New Issue
Block a user