Hi,
I want to make a chat using firestore, but when using query limit I have an error on iOS. This query runs nicely on android.

const _this = this;
this.unsibscribeChat = this.chatRef
.orderBy('createdAt', 'desc')
.limit(10)
.onSnapshot(function(querySnapshot) {
_this.messageList = [];
querySnapshot.forEach(function(doc) {
// console.log(doc.id, " => ", doc.data());
const message = doc.data();
message.id = doc.id;
_this.messageList.push(message);
});
});
@jokopurnomoa This should be fixed in v3.1.0 which will be released later today. I'll update this issue when it has been.
@jokopurnomoa v3.1.0 is out now with this fix. Thanks for the report
Most helpful comment
@jokopurnomoa This should be fixed in v3.1.0 which will be released later today. I'll update this issue when it has been.