Skip to content

Commit

Permalink
Fix track edit preview transcode missing wallet (#10433)
Browse files Browse the repository at this point in the history
  • Loading branch information
sliptype authored Nov 13, 2024
1 parent bac5d9d commit e08c4a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/libs/src/NativeAudiusLibs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,9 @@ export class AudiusLibs {
this.creatorNodeConfig.passList,
this.creatorNodeConfig.blockList,
this.creatorNodeConfig.monitoringCallbacks,
this.creatorNodeConfig.storageNodeSelector
this.creatorNodeConfig.storageNodeSelector,
this.creatorNodeConfig.wallet,
this.creatorNodeConfig.userId
)
await this.creatorNode.init()
}
Expand Down
4 changes: 3 additions & 1 deletion packages/libs/src/WebAudiusLibs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,9 @@ export class AudiusLibs {
this.creatorNodeConfig.passList,
this.creatorNodeConfig.blockList,
this.creatorNodeConfig.monitoringCallbacks,
this.creatorNodeConfig.storageNodeSelector
this.creatorNodeConfig.storageNodeSelector,
this.creatorNodeConfig.wallet,
this.creatorNodeConfig.userId
)
await this.creatorNode.init()
}
Expand Down

0 comments on commit e08c4a6

Please sign in to comment.