thruster-rs / Thruster

A fast, middleware based, web framework written in Rust
MIT License
1.07k stars 47 forks source link

bug: Fix index route conflict with * #74

Closed trezm closed 6 years ago

trezm commented 6 years ago

Issue: If / is defined as well as /*, the wildcard takes precedence, where the opposite should be true.

Solution: The matching algorithm was off. We should reexamine and refactor the matching algorithm in the future.

[Fixes #73]