Thomas Craipeau

Results 33 comments of Thomas Craipeau

I think the problem is https://github.com/Meteor-Community-Packages/meteor-collection-hooks/blob/master/insert.js#L36 I added an “else” ``` if (typeof id === 'object' && id.ops) { // If _str then collection is using Mongo.ObjectID as ids if...

pour le logo pas possible de puis l'api, pour la description https://rocket.chat/docs/developer-guides/rest-api/channels/setdescription/ , pour le sujet https://rocket.chat/docs/developer-guides/rest-api/channels/settopic/

Hello, Do you have any idea when you will update it to version 5?

meteor 3 : you need to change the observe to observeAsync

@drone1 it may be related to this https://github.com/veliovgroup/flow-router/issues/120

For me the problem comes from calling Meteor.userId() in Meteor.bindEnvironment In a standard publish it's the same if you put this code in a publish ``` const test = Meteor.bindEnvironment(async...

No it's different between meteor 2 and 3 on this: ```js Meteor.publish('TestBindEnvironment', async function () { if (!this.userId) { return null; } const test = Meteor.bindEnvironment(async () => { console.log('bindEnvironment...

on meteor 2 : is ok DDP._CurrentPublicationInvocation.get() on meteor 3: DDP._CurrentPublicationInvocation.get() is undefined ```js Meteor.publish('TestBindEnvironment', async function () { if (!this.userId) { return null; } const test = Meteor.bindEnvironment(async ()...

@nachocodoner Thank you for taking the time to help me I performed a test without using any packages, and as you mentioned, I did not encounter any errors. I then...

I just noticed that two packages are causing issues for me: universe:i18n and matb33:collection-hooks (version 2.0.0-rc.2). The latter package could also be contributing to the problem. Here is the link...