Skip to content

Commit acbdc94

Browse files
committed
update
1 parent da9609a commit acbdc94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sdk/namespace_fs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ class NamespaceFS {
730730
if (!delimiter && r.common_prefix) {
731731
await process_dir(r.key);
732732
} else {
733-
if (key_marker_value.includes(r.key)) {
733+
if (key_marker_value === r.key) {
734734
return;
735735
}
736736
if (pos < results.length) {
@@ -771,7 +771,7 @@ class NamespaceFS {
771771
}
772772
await process_dir(r.key);
773773
} else {
774-
if (key_marker_value.includes(r.key)) {
774+
if (key_marker_value === r.key) {
775775
return;
776776
}
777777
results.push(r);

0 commit comments

Comments
 (0)