This commit is contained in:
Eugene Pankov
2021-07-24 10:14:07 +02:00
parent 129bc8a9f1
commit 6f972ab4cc
2 changed files with 2 additions and 2 deletions

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> {