nappup 1.0.12 → 1.0.13

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +3 -1
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "git+https://github.com/44billion/nappup.git"
7
7
  },
8
8
  "license": "GPL-3.0-or-later",
9
- "version": "1.0.12",
9
+ "version": "1.0.13",
10
10
  "description": "Nostr App Uploader",
11
11
  "type": "module",
12
12
  "scripts": {
package/src/index.js CHANGED
@@ -262,7 +262,9 @@ async function maybeUploadStall ({
262
262
 
263
263
  const publishStall = async (event) => {
264
264
  const signedEvent = await signer.signEvent(event)
265
- return await throttledSendEvent(signedEvent, writeRelays, { pause, log, trailingPause: true })
265
+ // App stores are fetching stall events just from primal relay for now
266
+ const relays = [...new Set([...writeRelays, 'wss://relay.primal.net'])]
267
+ return await throttledSendEvent(signedEvent, relays, { pause, log, trailingPause: true })
266
268
  }
267
269
 
268
270
  const createdAt = Math.floor(Date.now() / 1000)