You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unhandled exception: System.ArgumentOutOfRangeException: Index and count must refer to a location within the string. (Parameter 'count')
at System.String.Remove(Int32 startIndex, Int32 count)
at TwentyTwenty.Storage.Amazon.AmazonStorageProvider.ListBlobsAsync(String containerName)
at X4BFlow.Main.DbLink.ObjConnector.ListBlobs(String containerName)+MoveNext() in /home/runner/work/X4BFlow.Net/X4BFlow.Net/X4BFlow.Main/DbLink/ObjConnector.cs:line 36
I'm currently trying to list files that are just contained in the root of a bucket in S3.
var listBlobsAsync = await _storageProvider.ListBlobsAsync("");
I expect to get a list of BlobDescriptors with the keys
file1.txt, file2.txt and file3.txt
for example but instead getile1.txt, ile2.txt and ile3.txt
The problem occurs here because even when an empty string is provided, it will always trim at least one character.
TwentyTwenty.Storage/src/TwentyTwenty.Storage.Amazon/AmazonStorageProvider.cs
Line 380 in 2cceede
The text was updated successfully, but these errors were encountered: