Skip to content

Commit a58d3eb

Browse files
committed
DeltaPatcher: Dont call .entries for patch to avoid warnings on Android
1 parent c61129e commit a58d3eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/middlewares/delta/DeltaPatcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export default class DeltaPatcher {
154154
}
155155

156156
_patchMap(original, patch) {
157-
for (const [key, value] of patch.entries()) {
157+
for (const [key, value] of patch) {
158158
if (value == null) {
159159
original.delete(key);
160160
} else if (checkFetchExists(value)) {

0 commit comments

Comments
 (0)