File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1- 0.34.1
1+ 0.34.2
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
55and 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments