aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/connection/identification.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/action_cable/connection/identification.rb')
-rw-r--r--lib/action_cable/connection/identification.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action_cable/connection/identification.rb b/lib/action_cable/connection/identification.rb
index 113e41ca3f..1be6f9ac76 100644
--- a/lib/action_cable/connection/identification.rb
+++ b/lib/action_cable/connection/identification.rb
@@ -16,7 +16,7 @@ module ActionCable
# channel instances created off the connection.
def identified_by(*identifiers)
Array(identifiers).each { |identifier| attr_accessor identifier }
- self.identifiers += identifiers
+ self.identifiers += identifiers
end
end