no_notifier_needed 2.4.2 → 2.4.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/initializers/notifier.rb +1 -1
- data/no_notifier_needed.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.4.
|
1
|
+
2.4.3
|
data/initializers/notifier.rb
CHANGED
@@ -92,7 +92,7 @@ class Notifier < ActionMailer::Base
|
|
92
92
|
end
|
93
93
|
|
94
94
|
def utm_params
|
95
|
-
return "" unless @template.respond_to?(:utm_params)
|
95
|
+
return "" unless @template.respond_to?(:utm_params) && @template.utm_params
|
96
96
|
utm = @template.utm_params
|
97
97
|
to_ret = utm if utm.is_a?(String)
|
98
98
|
to_ret = utm.join("&") if utm.is_a?(Array)
|
data/no_notifier_needed.gemspec
CHANGED