diff --git a/tabby-electron/src/sshImporters.ts b/tabby-electron/src/sshImporters.ts index eca1c384..bdba4eb9 100644 --- a/tabby-electron/src/sshImporters.ts +++ b/tabby-electron/src/sshImporters.ts @@ -26,7 +26,7 @@ export class OpenSSHImporter extends SSHProfileImporter { if (line.trim().startsWith('#') || !line.trim()) { continue } - if (line.startsWith('Host ')) { + if (line.toLowerCase().startsWith('host ')) { if (currentProfile) { results.push(currentProfile) }