Martin Bachl

Results 5 comments of Martin Bachl

As a response to @blitzlightnin - This is what I did for Template-Level Subscriptions: ``` Template.logEntries.created = function() { this.computation = Tracker.autorun(() => { if (this.logEntries) { this.logEntries.stop(); this.logEntries =...

Seems that FlowRouter is the issue here: https://forums.meteor.com/t/after-update-to-1-4-2-flowrouterssr-not-working/30777

There is an issue now in the official repo of meteor about this bug: https://github.com/meteor/meteor/issues/7992

From the latest post in the linked issue it seems to me that the rewrite of the inject-data package was just a workaround at that time. According to the aforementioned...

I have investigated a bit further and in the react apollo app they took some parts of the SSR functionality from FlowrouterSSR. And they are using Meteor 1.4.2. **But** I...