We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53bef15 commit cf54121Copy full SHA for cf54121
1 file changed
src/obp/resource-docs.ts
@@ -122,7 +122,7 @@ export async function cacheDoc(cacheStorageOfResourceDocs: any): Promise<any> {
122
}
123
const scannedAPIVersions = apiVersions.scanned_api_versions
124
// Filter to only include active versions
125
- const activeVersions = scannedAPIVersions.filter((version: any) => version.active === true)
+ const activeVersions = scannedAPIVersions.filter((version: any) => version.is_active === true)
126
console.log(
127
`[CACHE] Found ${scannedAPIVersions.length} total versions, ${activeVersions.length} are active`
128
)
0 commit comments