@cryptotaxi247 / infra-1 / commits / 9bc32f40

fix: Listing of sub-directories of S3 buckets with a large number of items

See also PR against upstream repo: https://github.com/rufuspollock/s3-bucket-listing/pull/135

Thomas Gerbet committed Oct 15, 2025 at 08:27 UTC 9bc32f40207f02d1e6362715d4f19c16e0963457
1 file changed +1 -1
terraform/s3_listing.html.tpl
+1 -1
@@ -251,7 +251,7 @@
251 // clang-format on
252 });
253 if ($(xml.find('IsTruncated')[0]).text() == 'true') {
254 - var nextMarker = $(xml.find('NextMarker')[0]).text();
254 + var nextMarker = xml.find('NextMarker').textContent;
255 } else {
256 var nextMarker = null;
257 }