summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/models/gateway.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/gateway.rb b/app/models/gateway.rb
index 01309e6..21dc831 100644
--- a/app/models/gateway.rb
+++ b/app/models/gateway.rb
@@ -22,7 +22,7 @@ class Gateway < ActiveRecord::Base
private
def downcase_technology
- technology = technology.downcase if !technology.blank?
+ self.technology = self.technology.downcase if !self.technology.blank?
end
end