Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
[bug] Set proper default for autoConfirmFingerprint (#704)
Browse files Browse the repository at this point in the history
  • Loading branch information
addisonbeck committed Mar 3, 2022
1 parent 4d94f7a commit 6aae3be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/services/state.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export class StateService<
async getAutoConfirmFingerPrints(options?: StorageOptions): Promise<boolean> {
return (
(await this.getAccount(this.reconcileOptions(options, await this.defaultOnDiskOptions())))
?.settings?.autoConfirmFingerPrints ?? true
?.settings?.autoConfirmFingerPrints ?? false
);
}

Expand Down

0 comments on commit 6aae3be

Please sign in to comment.