Skip to content

Commit f0ae296

Browse files
committed
Subscription handles are a map.
1 parent e18e101 commit f0ae296

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export function install(Vue, options) {
155155
Vue.prototype.$subscriptionsReady = function () {
156156
this._allSubsReadyDep.depend();
157157

158-
this._allSubsReady = this._subscriptionHandles.every(function (handle, index, array) {
158+
this._allSubsReady = Array.from(this._subscriptionHandles.values()).every(function (handle, index, array) {
159159
return handle.ready();
160160
});
161161

0 commit comments

Comments
 (0)