@instantdb/core 1.0.37 → 1.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantdb/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.38",
|
|
4
4
|
"description": "Instant's core local abstraction",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/instantdb/instant/tree/main/client/packages/core",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"mutative": "^1.0.10",
|
|
59
59
|
"uuid": "^11.1.0",
|
|
60
|
-
"@instantdb/version": "1.0.
|
|
60
|
+
"@instantdb/version": "1.0.38"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"test": "vitest",
|
package/src/Reactor.js
CHANGED
|
@@ -956,7 +956,7 @@ export default class Reactor {
|
|
|
956
956
|
}
|
|
957
957
|
|
|
958
958
|
_handleReceiveError(msg) {
|
|
959
|
-
|
|
959
|
+
this._log.info('error', msg);
|
|
960
960
|
const eventId = msg['client-event-id'];
|
|
961
961
|
// This might not be a mutation, but it can't hurt to delete it
|
|
962
962
|
this._inFlightMutationEventIds.delete(eventId);
|