Skip to content

Commit

Permalink
fix: artificial lag resetting date_to (#22461)
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin authored and timgl committed May 24, 2024
1 parent d1cb173 commit 4547328
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export const sessionRecordingsPlaylistLogic = kea<sessionRecordingsPlaylistLogic
hog_ql_filtering: values.useHogQLFiltering,
}

if (values.artificialLag) {
if (values.artificialLag && !params.date_to) {
// values.artificalLag is a number of seconds to delay the recordings by
// convert it to an absolute UTC timestamp as the relative date parsing in the backend
// can't cope with seconds as a relative date
Expand Down

0 comments on commit 4547328

Please sign in to comment.