mirror of
https://github.com/umami-software/umami.git
synced 2026-02-20 20:45:39 +01:00
Finish event_data relational.
This commit is contained in:
parent
f1f602b42d
commit
2343949d3e
12 changed files with 133 additions and 122 deletions
|
|
@ -99,8 +99,8 @@ export default async (req: NextApiRequestCollect, res: NextApiResponse) => {
|
|||
referrerDomain = newRef.hostname;
|
||||
referrerQuery = newRef.search.substring(1);
|
||||
} catch {
|
||||
referrerPath = referrer.split('?')[0];
|
||||
referrerQuery = referrer.split('?')[1];
|
||||
referrerPath = referrer?.split('?')[0];
|
||||
referrerQuery = referrer?.split('?')[1];
|
||||
}
|
||||
|
||||
if (process.env.REMOVE_TRAILING_SLASH) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue