Skip to content

Commit

Permalink
chore: missing rpc init
Browse files Browse the repository at this point in the history
With the multi-channel RPC in podman-desktop#1300 we switched from automatic init via constructor
to requiring init() to be called explicitly, I just missed committing this one
critical line.

Fixes podman-desktop#1301.

Signed-off-by: Tim deBoer <[email protected]>
  • Loading branch information
deboer-tim committed Feb 10, 2025
1 parent b431aec commit 3f60ca9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/backend/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ export async function activate(extensionContext: ExtensionContext): Promise<void

// Register the 'api' for the webview to communicate to the backend
const rpcExtension = new RpcExtension(panel.webview);
rpcExtension.init();
extensionContext.subscriptions.push(rpcExtension);

const bootcApi = new BootcApiImpl(extensionContext, panel.webview);
Expand Down

0 comments on commit 3f60ca9

Please sign in to comment.