From 1926eca929df8a3ddb856d43bd37b7b73daf04e3 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sat, 24 Jul 2021 10:25:29 +0200 Subject: [PATCH] lint --- tabby-local/src/session.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-local/src/session.ts b/tabby-local/src/session.ts index 32cc9ce1..42f459d7 100644 --- a/tabby-local/src/session.ts +++ b/tabby-local/src/session.ts @@ -287,7 +287,7 @@ export class Session extends BaseSession { } supportsWorkingDirectory (): boolean { - return !!this.truePID ?? this.reportedCWD ?? this.guessedCWD + return !!(this.truePID ?? this.reportedCWD ?? this.guessedCWD) } async getWorkingDirectory (): Promise {