mirror of
https://github.com/bitwarden/mobile
synced 2026-01-02 08:33:17 +00:00
HttpService abstraction with CustomAndroidClientHandler to handle xamarin android bug with error response body
This commit is contained in:
@@ -11,8 +11,10 @@ namespace Bit.App.Repositories
|
||||
{
|
||||
public class SiteApiRepository : ApiRepository<SiteRequest, SiteResponse, string>, ISiteApiRepository
|
||||
{
|
||||
public SiteApiRepository(IConnectivity connectivity)
|
||||
: base(connectivity)
|
||||
public SiteApiRepository(
|
||||
IConnectivity connectivity,
|
||||
IHttpService httpService)
|
||||
: base(connectivity, httpService)
|
||||
{ }
|
||||
|
||||
protected override string ApiRoute => "sites";
|
||||
|
||||
Reference in New Issue
Block a user