diff options
Diffstat (limited to 'actioncable/app/javascript/action_cable/subscriptions.js')
-rw-r--r-- | actioncable/app/javascript/action_cable/subscriptions.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actioncable/app/javascript/action_cable/subscriptions.js b/actioncable/app/javascript/action_cable/subscriptions.js index 712ff50d28..867cafb407 100644 --- a/actioncable/app/javascript/action_cable/subscriptions.js +++ b/actioncable/app/javascript/action_cable/subscriptions.js @@ -1,4 +1,4 @@ -import ActionCable from "./index" +import Subscription from "./subscription" // Collection class for creating (and internally managing) channel subscriptions. The only method intended to be triggered by the user // us ActionCable.Subscriptions#create, and it should be called through the consumer like so: @@ -18,7 +18,7 @@ export default class Subscriptions { create(channelName, mixin) { const channel = channelName const params = typeof channel === "object" ? channel : {channel} - const subscription = new ActionCable.Subscription(this.consumer, params, mixin) + const subscription = new Subscription(this.consumer, params, mixin) return this.add(subscription) } |