1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-25 12:45:18 +01:00

Fix bitwarden typo in API URI (#2044)

This commit is contained in:
Dan Poltawski 2022-06-09 17:21:55 +01:00 committed by GitHub
parent f5622dd956
commit 65ac9a527f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -437,7 +437,7 @@ namespace Bit.Core.Settings
} }
public string ApiUri public string ApiUri
{ {
get => string.IsNullOrWhiteSpace(_apiUri) ? "https://api.biwarden.com" : _apiUri; get => string.IsNullOrWhiteSpace(_apiUri) ? "https://api.bitwarden.com" : _apiUri;
set => _apiUri = value; set => _apiUri = value;
} }
} }