hotwired / turbo-android

Android framework for making Turbo native apps
MIT License
423 stars 51 forks source link

URL pattern matching with query parameter #198

Closed shkim closed 6 months ago

shkim commented 2 years ago

It seems that turbo-android does not cut the query paramter part in url before pattern matching. For example, with "^/my/dir$" pattern, in turbo-android, "/my/dir" is matched but "/my/dir?page=2" is not matched. The problem is.. in turbo-ios both two urls are matched.