Hono: app.mount() strips mount prefix using undecoded path, causing incorrect routing for percent-encoded paths
Summary app.mount strips the mount prefix from the incoming request path using the raw URL pathname, while route matching is performed against the percent-decoded path. This inconsistency causes the prefix to be stripped at the wrong position when the path contains percent-encoded multi-byte...