aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/alert_changed.rb
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2012-11-27 11:51:47 +0000
committerPatrick J Cherry <patrick@bytemark.co.uk>2012-11-27 11:51:47 +0000
commit11999e9c25d237bae2b6eb51ed20e63b2db9c2c7 (patch)
tree5aeb8c9ab561a6e076ff63aeb5f3fdc4c9714b84 /lib/mauve/alert_changed.rb
parent791abff5faabfc14568cdcaf0be553eb05947372 (diff)
Be more picky when setting updated_at/created_at timestamps.
Diffstat (limited to 'lib/mauve/alert_changed.rb')
-rw-r--r--lib/mauve/alert_changed.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mauve/alert_changed.rb b/lib/mauve/alert_changed.rb
index 3c5fa0f..6f1a717 100644
--- a/lib/mauve/alert_changed.rb
+++ b/lib/mauve/alert_changed.rb
@@ -28,7 +28,7 @@ module Mauve
protected
def do_set_timestamps(context = :default)
- self.at = Time.now unless self.original_attributes.has_key?("at")
+ self.at = Time.now if self.dirty?
end
public