We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da293d6 commit f0e7713Copy full SHA for f0e7713
update.ts
@@ -46,7 +46,7 @@ class Keycloak {
46
const response = await fetch("https://www.keycloak.org/documentation");
47
const body = await responseBody(response);
48
49
- return new Version((/Documentation [^>]+>([^<]+)/.exec(body) ?? [])[1]);
+ return new Version((/Documentation <span class="badge bg-primary">([^<]+)/.exec(body) ?? [])[1]);
50
}
51
52
apiUrl(version: Version): string {
0 commit comments