File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export class Context {
40
40
}
41
41
42
42
subscribe ( subName /*, params */ ) {
43
- const publishHandler = Meteor . default_server . publish_handlers [ subName ] ;
43
+ const publishHandler = Meteor . server . publish_handlers [ subName ] ;
44
44
if ( publishHandler ) {
45
45
const params = Array . prototype . slice . call ( arguments , 1 ) ;
46
46
// non-universal subs have subscription id
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ export const FastRender = {
177
177
// adding support for null publications
178
178
FastRender . onAllRoutes ( function ( ) {
179
179
const context = this ;
180
- const nullHandlers = Meteor . default_server . universal_publish_handlers ;
180
+ const nullHandlers = Meteor . server . universal_publish_handlers ;
181
181
182
182
if ( nullHandlers ) {
183
183
nullHandlers . forEach ( function ( publishHandler ) {
You can’t perform that action at this time.
0 commit comments