We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaaa14b commit 04a40e9Copy full SHA for 04a40e9
src/command/feed/feed-command.ts
@@ -86,7 +86,8 @@ export class FeedCommand extends RootCommand {
86
try {
87
const writer = this.bee.makeFeedWriter(topic, wallet.getPrivateKey())
88
const feedManifestResult = await this.bee.createFeedManifest(stamp, topic, wallet.getAddressString())
89
- const { reference } = await writer.upload(stamp, chunkReference)
+ const data = await this.bee.downloadData(chunkReference)
90
+ const { reference } = await writer.uploadPayload(stamp, data.toUint8Array())
91
92
return { reference, manifest: feedManifestResult }
93
} finally {
0 commit comments