Skip to content

Commit

Permalink
fixed #8868 - not starting on a fresh install
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Aug 29, 2023
1 parent 3442442 commit 6042a52
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tabby-core/src/services/config.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,9 @@ export class ConfigService {
config.version = 5
}
if (config.version < 6) {
if (config.ssh.clearServiceMessagesOnConnect === false) {
if (config.ssh?.clearServiceMessagesOnConnect === false) {
config.profileDefaults ??= {}
config.profileDefaults.ssh ??= {}
config.profileDefaults.ssh.clearServiceMessagesOnConnect = false
delete config.ssh?.clearServiceMessagesOnConnect
}
Expand Down

0 comments on commit 6042a52

Please sign in to comment.