braid-text 0.2.105 → 0.2.106
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/index.js +4 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -221,13 +221,15 @@ function create_braid_text() {
|
|
|
221
221
|
|
|
222
222
|
var temp_ac = new AbortController()
|
|
223
223
|
temp_acs.add(temp_ac)
|
|
224
|
-
|
|
224
|
+
var get_options = {
|
|
225
225
|
signal: temp_ac.signal,
|
|
226
226
|
parents: frontier,
|
|
227
227
|
merge_type: 'dt',
|
|
228
228
|
peer: options.peer,
|
|
229
229
|
subscribe: u => u.version?.length && q.push(u)
|
|
230
|
-
}
|
|
230
|
+
}
|
|
231
|
+
await braid_text.get(a, get_options)
|
|
232
|
+
await get_options.my_subscribe_chain
|
|
231
233
|
if (signal.aborted) return
|
|
232
234
|
temp_ac.abort()
|
|
233
235
|
temp_acs.delete(temp_ac)
|