Skip to content

Commit 1ba1270

Browse files
jnunemakerclaude
andcommitted
Ensure Time.parse returns UTC for consistency with Numeric path
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 701c88c commit 1ba1270

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/flipper/expressions/time.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def self.call(value)
88
when Numeric
99
::Time.at(value).utc
1010
else
11-
::Time.parse(value)
11+
::Time.parse(value).utc
1212
end
1313
end
1414
end

0 commit comments

Comments
 (0)