Skip to content

Commit

Permalink
Merge branch 'firestore-writebatch-fix' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasBuchholz committed Dec 3, 2024
2 parents 372aaa3 + cac5419 commit 7907b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Firestore/Platforms/iOS/WriteBatchWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public IWriteBatch SetData(IDocumentReference document, SetOptions options, para

public IWriteBatch UpdateData(IDocumentReference document, Dictionary<object, object> data)
{
return _wrapped.UpdateData(data, document.ToNative()).ToAbstract();
return _wrapped.UpdateData(data.ToNSObjectDictionary(), document.ToNative()).ToAbstract();
}

public IWriteBatch UpdateData(IDocumentReference document, params (string, object)[] data)
Expand Down

0 comments on commit 7907b7e

Please sign in to comment.