(completed)
| 11900 | try { |
| 11901 | const result = await window.electron.invoke('execute-client-command', commandData); |
| 11902 | if (result && result.success) { |
| 11903 | console.log('File opened successfully via IPC'); |
| 11904 | return; |
| 11905 | } |
| 11906 | } catch (ipcError) { |
| 11907 | console.log('IPC handler not available, trying direct method:', ipcError); |
| 11908 | } |
| 11909 | } |
| 11910 | |
| 11911 | // Try direct openPath (works for Electron clients with preload) |
no outgoing calls
no test coverage detected