Skip to content

Commit 5a9bdfe

Browse files
authored
Merge pull request #1912 from Freika/dev
0.34.2
2 parents 55e1f4a + 6c62edb commit 5a9bdfe

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.app_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.34.1
1+
0.34.2

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
# [0.34.2] - 2025-10-31
8+
9+
## Fixed
10+
11+
- Fixed a bug in UTM trackable concern. #1909
12+
713
# [0.34.1] - 2025-10-30
814

915
## Fixed

app/controllers/concerns/utm_trackable.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# frozen_string_literal: true
22

3+
module UtmTrackable
34
extend ActiveSupport::Concern
45

56
UTM_PARAMS = %w[utm_source utm_medium utm_campaign utm_term utm_content].freeze

app/jobs/tracks/daily_generation_job.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def process_user_daily_tracks(user)
3838

3939
Tracks::ParallelGeneratorJob.perform_later(
4040
user.id,
41-
start_at: start_timestamp,
42-
end_at: Time.current.to_i,
41+
start_at: Time.zone.at(start_timestamp),
42+
end_at: Time.current,
4343
mode: 'daily'
4444
)
4545
end

0 commit comments

Comments
 (0)