Multi fields unique index leading duplicate error in mongodb

I am using mongodb with meteor.js
To make multiple fields simultaneously from a collection be unique I use the following code

Messages._ensureIndex({ "numbers": 1, "messageListId": 1, "userId": 1},{unique: true , sparse: true});

messageListId and userId can be null (optional).
When numbers field already exist and I want to insert a new object Mongo gives the following error

Error: MongoError: insertDocument :: caused by :: 11000 E11000 duplicate key error index: meteor.messages.$numbers_1_messageListId_1_userId_1  dup key: { : "09355270761", : null, : null } [409]

for instance I want to insert objects same below

Messages.insert({numbers:123,messageListId:456,userId:1});

Messages.insert({numbers:123});

I give the above mentioned error.I answer this question in satckoverflow but they did not answer my question.
How to do this in meteor.js?

My question link

Thanks for your attention.