I am building a Microsoft Teams tab add-in in TypeScript, that uses the LiveShareClient to share presence. It works fine on a few machines I've tried it on, but on one system on another tenant, the code for the LiveShareClient.joinContainer() throws an error:
500, message: 'Internal error encountered while performing the required operation
Is there any way to get more details about this error? The Typescript code in the stage context is this:
const containerSchema = {
initialObjects: {
presence: LivePresence,
},
};
await app.initialize();
const host = LiveShareHost.create();
const client = new LiveShareClient(host);
await client.joinContainer(containerSchema);