Commit c894727fcddd509e3ecbed08ab42f9601e6e652d
dx: update desktop sandbox of ssb-db2 APIs
Andre Staltz committed on 3/16/2021, 4:10:54 PMParent: 7d2b4052fde6258384c2c64a5aa92e4a4c8d0117
Files changed
src/desktop/index.ts | changed |
src/desktop/index.ts | ||
---|---|---|
@@ -50,8 +50,15 @@ | ||
50 | 50 | }), |
51 | 51 | ); |
52 | 52 | |
53 | 53 | pull( |
54 | + ssb.threadsUtils.selfPublicRoots({live: true, old: false}), | |
55 | + pull.drain((thread: any) => { | |
56 | + console.log(thread); | |
57 | + }), | |
58 | + ); | |
59 | + | |
60 | + pull( | |
54 | 61 | ssb.threadsUtils.privateFeed({}), |
55 | 62 | pull.take(3), |
56 | 63 | pull.drain((thread: any) => { |
57 | 64 | console.log(thread); |
Built with git-ssb-web