kadirahq / fast-render

Render you app even before the DDP connection is live. - magic?
MIT License
560 stars 80 forks source link

Fast render debugger return "[]" on Meteor 1.3.4.4 #182

Open Tbutnyakov opened 7 years ago

Tbutnyakov commented 7 years ago

Hi! I have a strange situation with fast render. I'm use iron router+fast-render+publish composite. My routes configured correct, via fast-render guide. But fast.render debug show me 0 subscriptions in console on the client. In fact, I have empty object in fast.render.debbuger.

Example of Route:

Router.route('/', { name: 'news', waitOn: function() { return [Meteor.subscribe('news'), Meteor.subscribe('digest')]; }, action: function() { this.render('news_main'); }, fastRender: true });

In console FastRender.debugger.getPayload() return only users object

Is it work with publish composite? Or problem in router?

UPD: Or may be problem in Astronomy-ORM i use in project?

Tbutnyakov commented 7 years ago

@arunoda can u help me please?

abecks commented 7 years ago

Try the new release. This sounds like it was related to 2.14 not working with Meteor 1.3.2+. The 2.16 release might fix your issue.

Tbutnyakov commented 7 years ago

@abecks hello! Still the same result