We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4345fb6 commit d54ce54Copy full SHA for d54ce54
src/utils/coana.mts
@@ -15,7 +15,9 @@ export function extractTier1ReachabilityScanId(
15
socketFactsFile: string,
16
): string | undefined {
17
const json = readJsonSync(socketFactsFile, { throws: false })
18
- const tier1ReachabilityScanId = String(json?.['tier1ReachabilityScanId'] ?? '').trim()
+ const tier1ReachabilityScanId = String(
19
+ json?.['tier1ReachabilityScanId'] ?? '',
20
+ ).trim()
21
return tier1ReachabilityScanId.length > 0
22
? tier1ReachabilityScanId
23
: undefined
0 commit comments