@unicitylabs/sphere-sdk 0.6.13-dev.2 → 0.6.13-dev.3
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/dist/core/index.cjs +3 -2
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.js +3 -2
- package/dist/core/index.js.map +1 -1
- package/dist/impl/browser/index.cjs +1 -1
- package/dist/impl/browser/index.cjs.map +1 -1
- package/dist/impl/browser/index.js +1 -1
- package/dist/impl/browser/index.js.map +1 -1
- package/dist/impl/nodejs/index.cjs +1 -1
- package/dist/impl/nodejs/index.cjs.map +1 -1
- package/dist/impl/nodejs/index.js +1 -1
- package/dist/impl/nodejs/index.js.map +1 -1
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -26040,7 +26040,7 @@ var NostrTransportProvider = class _NostrTransportProvider {
|
|
|
26040
26040
|
const chatFilter = new import_nostr_js_sdk.Filter();
|
|
26041
26041
|
chatFilter.kinds = [import_nostr_js_sdk.EventKinds.GIFT_WRAP];
|
|
26042
26042
|
chatFilter["#p"] = [nostrPubkey];
|
|
26043
|
-
chatFilter.since = dmSince;
|
|
26043
|
+
chatFilter.since = dmSince - TIMESTAMP_RANDOMIZATION;
|
|
26044
26044
|
this.chatSubscriptionId = this.nostrClient.subscribe(chatFilter, {
|
|
26045
26045
|
onEvent: (event) => {
|
|
26046
26046
|
logger.debug("Nostr", "Received chat event kind:", event.kind, "id:", event.id?.slice(0, 12));
|