fix: fix payload file filter prefix in replay-payloads (#21255)

This commit is contained in:
かりんとう
2026-01-21 17:11:03 +01:00
committed by GitHub
parent 1954c91a60
commit 274394e777

View File

@@ -180,7 +180,7 @@ impl Command {
.filter_map(|e| e.ok())
.filter(|e| {
e.path().extension().and_then(|s| s.to_str()) == Some("json") &&
e.file_name().to_string_lossy().starts_with("payload_")
e.file_name().to_string_lossy().starts_with("payload_block_")
})
.collect();