Merge branch 'master' into meilisearch

This commit is contained in:
Chocobozzz 2023-12-20 16:31:34 +01:00
commit c9f901d6a3
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 10 additions and 6 deletions

View File

@ -15,13 +15,17 @@ export async function listIndexInstancesHost (): Promise<string[]> {
} }
export async function getMajorInstanceVersion (host: string): Promise<number> { export async function getMajorInstanceVersion (host: string): Promise<number> {
const { body } = await doRequest<any>({ uri: `https://${host}/api/v1/config`, json: true }) try {
const { body } = await doRequest<any>({ uri: `https://${host}/api/v1/config`, json: true })
const version = body.serverVersion const version = body.serverVersion
const majorVersion = parseInt(version.split('.')[0]) const majorVersion = parseInt(version.split('.')[0])
return isNaN(majorVersion) return isNaN(majorVersion)
? 0 ? 0
: majorVersion : majorVersion
} catch {
return 0
}
} }