mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 23:57:12 +01:00
Fix timezone bug (#1543)
This commit is contained in:
parent
add7c5ebe9
commit
b3d7d49448
1 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@ export default async (req, res) => {
|
||||||
getPageviewStats(websiteId, {
|
getPageviewStats(websiteId, {
|
||||||
start_at: startDate,
|
start_at: startDate,
|
||||||
end_at: endDate,
|
end_at: endDate,
|
||||||
tz,
|
timezone: tz,
|
||||||
unit,
|
unit,
|
||||||
count: '*',
|
count: '*',
|
||||||
filters: {
|
filters: {
|
||||||
|
|
@ -44,7 +44,7 @@ export default async (req, res) => {
|
||||||
getPageviewStats(websiteId, {
|
getPageviewStats(websiteId, {
|
||||||
start_at: startDate,
|
start_at: startDate,
|
||||||
end_at: endDate,
|
end_at: endDate,
|
||||||
tz,
|
timezone: tz,
|
||||||
unit,
|
unit,
|
||||||
count: 'distinct pageview.',
|
count: 'distinct pageview.',
|
||||||
filters: {
|
filters: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue