Skip to content

Commit 1523bab

Browse files
Implement new filePath method suggestion
Co-authored-by: Robert <robertbrignull@github.com>
1 parent 4ed0e0f commit 1523bab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/remote-queries/variant-analysis-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class VariantAnalysisManager extends DisposableObject implements VariantA
111111
}
112112

113113
private async variantAnalysisRecordExists(variantAnalysisId: number): Promise<boolean> {
114-
const filePath = path.join(this.storagePath, variantAnalysisId.toString());
114+
const filePath = this.getVariantAnalysisStorageLocation(variantAnalysisId);
115115
return await fs.pathExists(filePath);
116116
}
117117

0 commit comments

Comments
 (0)