Fix cli user agent (#562)

This commit is contained in:
Matt Gibson 2021-11-23 14:50:28 -06:00 committed by GitHub
parent b4f475251a
commit e1c6e4973a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -93,6 +93,10 @@ export class CliPlatformUtilsService implements PlatformUtilsService {
return Promise.resolve(this.packageJson.version);
}
getApplicationVersionSync(): string {
return this.packageJson.version;
}
supportsWebAuthn(win: Window) {
return false;
}