mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 21:27:20 +01:00
Fixed remove trailing slash logic.
This commit is contained in:
parent
909a96d458
commit
5165987076
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ export default async (req: NextApiRequestCollect, res: NextApiResponse) => {
|
|||
}
|
||||
|
||||
if (process.env.REMOVE_TRAILING_SLASH) {
|
||||
urlPath = urlPath.replace(/.+\/$/, '');
|
||||
urlPath = urlPath.replace(/(.+)\/$/, '$1');
|
||||
}
|
||||
|
||||
await saveEvent({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue