We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9fb35b commit 47030d9Copy full SHA for 47030d9
src/js/Database.js
@@ -180,7 +180,7 @@ class Message {
180
});
181
182
// patch the message with the new acked by id
183
- return await latestMessageByPacketId.patch({
+ return await latestMessageByPacketId.incrementalPatch({
184
acked_by_node_id: ackedByNodeId,
185
186
@@ -204,7 +204,7 @@ class Message {
204
205
206
// patch the message with the error
207
208
error: error,
209
210
@@ -231,7 +231,7 @@ class Message {
231
232
233
234
- return await latestMessageByText.patch({
+ return await latestMessageByText.incrementalPatch({
235
error: errorMessage,
236
237
0 commit comments