mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Merge pull request #3278 from harryo/bugfix/error-with-referrer
Fix https://github.com/umami-software/umami/issues/3255
This commit is contained in:
commit
75009f7e76
1 changed files with 3 additions and 1 deletions
|
|
@ -192,7 +192,9 @@ async function parseFilters(
|
||||||
options: QueryOptions = {},
|
options: QueryOptions = {},
|
||||||
) {
|
) {
|
||||||
const website = await fetchWebsite(websiteId);
|
const website = await fetchWebsite(websiteId);
|
||||||
const joinSession = Object.keys(filters).find(key => SESSION_COLUMNS.includes(key));
|
const joinSession = Object.keys(filters).find(key =>
|
||||||
|
['referrer', ...SESSION_COLUMNS].includes(key),
|
||||||
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
joinSession:
|
joinSession:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue