S3 Storage korrektur
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:
2026-01-24 20:58:15 +01:00
parent 0f39159d39
commit c72f6612fc
2 changed files with 4 additions and 4 deletions

View File

@@ -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;