mirror of
https://github.com/bitwarden/mobile
synced 2025-12-13 23:03:23 +00:00
fix warnings
This commit is contained in:
@@ -27,7 +27,6 @@ namespace Bit.Core.Services
|
|||||||
private readonly IPlatformUtilsService _platformUtilsService;
|
private readonly IPlatformUtilsService _platformUtilsService;
|
||||||
private readonly Func<bool, Task> _logoutCallbackAsync;
|
private readonly Func<bool, Task> _logoutCallbackAsync;
|
||||||
private string _deviceType;
|
private string _deviceType;
|
||||||
private bool _usingBaseUrl = false;
|
|
||||||
|
|
||||||
public ApiService(
|
public ApiService(
|
||||||
ITokenService tokenService,
|
ITokenService tokenService,
|
||||||
@@ -50,7 +49,6 @@ namespace Bit.Core.Services
|
|||||||
UrlsSet = true;
|
UrlsSet = true;
|
||||||
if(!string.IsNullOrWhiteSpace(urls.Base))
|
if(!string.IsNullOrWhiteSpace(urls.Base))
|
||||||
{
|
{
|
||||||
_usingBaseUrl = true;
|
|
||||||
ApiBaseUrl = urls.Base + "/api";
|
ApiBaseUrl = urls.Base + "/api";
|
||||||
IdentityBaseUrl = urls.Base + "/identity";
|
IdentityBaseUrl = urls.Base + "/identity";
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ namespace Bit.Core.Services
|
|||||||
|
|
||||||
public async Task CheckLockAsync()
|
public async Task CheckLockAsync()
|
||||||
{
|
{
|
||||||
if(false) // TODO: view is open?
|
if(_platformUtilsService.IsViewOpen())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user