diff --git a/Blink/Commands/mosh/mosh.swift b/Blink/Commands/mosh/mosh.swift index 361a97945..a2656a9d0 100644 --- a/Blink/Commands/mosh/mosh.swift +++ b/Blink/Commands/mosh/mosh.swift @@ -184,7 +184,7 @@ enum MoshError: Error, LocalizedError { sequence = [UseMoshOnPath.staticMosh(), InstallStaticMosh(onCancel: { [weak self] in self?.kill() }, logger: self.logger)] } else { - sequence = [UseMoshOnPath(path: moshClientParams.server)] + sequence = [UseMoshOnPath.staticMosh(), UseMoshOnPath(path: moshClientParams.server)] } let pty: SSH.SSHClient.PTY?