-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
β Problem
filepath.size() >= 5 &&
filepath.substr(filepath.size() - 5) == ".wasm"
Fails for:
-
uppercase .WASM
-
paths like file.wasm.bak
β Fix (robust & cleaner)
fs::path p(filepath);
return p.extension() == ".wasm";
π Severity: Minor
π Phase impact: Phase 6 robustness
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed