fix listener

pull/5370/head
bunsenstraat 5 months ago
parent 9d40e5df3b
commit 97f649e1b2
  1. 2
      apps/remixdesktop/src/plugins/foundryPlugin.ts

@ -41,13 +41,13 @@ class FoundryPluginClient extends ElectronBasePluginRemixdClient {
async onActivation(): Promise<void> { async onActivation(): Promise<void> {
console.log('Foundry plugin activated') console.log('Foundry plugin activated')
this.call('terminal', 'log', { type: 'log', value: 'Foundry plugin activated' }) this.call('terminal', 'log', { type: 'log', value: 'Foundry plugin activated' })
this.startListening()
this.on('fs' as any, 'workingDirChanged', async (path: string) => { this.on('fs' as any, 'workingDirChanged', async (path: string) => {
console.log('workingDirChanged foundry', path) console.log('workingDirChanged foundry', path)
this.currentSharedFolder = path this.currentSharedFolder = path
this.startListening() this.startListening()
}) })
this.currentSharedFolder = await this.call('fs' as any, 'getWorkingDir') this.currentSharedFolder = await this.call('fs' as any, 'getWorkingDir')
if(this.currentSharedFolder) this.startListening()
} }
startListening() { startListening() {

Loading…
Cancel
Save