mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Should allow non http referrers. Closes #2831
This commit is contained in:
parent
72b3b6158a
commit
082a751ffe
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ export default async (req: NextApiRequestCollect, res: NextApiResponse) => {
|
|||
urlPath = '/';
|
||||
}
|
||||
|
||||
if (referrerPath?.startsWith('http')) {
|
||||
if (/^[\w-]+:\/\/\w+/.test(referrerPath)) {
|
||||
const refUrl = new URL(referrer);
|
||||
referrerPath = refUrl.pathname;
|
||||
referrerQuery = refUrl.search.substring(1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue