diff --git a/lib/activation.rb b/lib/activation.rb index ac31e74..9d97470 100644 --- a/lib/activation.rb +++ b/lib/activation.rb @@ -1,9 +1,11 @@ module Activation def activate! - (self.active = true) && self.save! + (self.active = true) + self.save! end def suspend! - (self.active = false) && self.save! + (self.active = false) + self.save! end end \ No newline at end of file -- libgit2 0.21.2