1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 01:18:39 +03:00
This commit is contained in:
Eugene Pankov 2021-07-24 10:25:29 +02:00
parent f20ba3e8bc
commit 1926eca929
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -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<string|null> {