diff --git a/package.json b/package.json index 46cdf58583..9600932bc7 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,6 @@ }, "dependencies": { "@byteowls/capacitor-oauth2": "4.x", - "@capacitor-community/http": "^1.4.1", "@capacitor/android": "^5.0.0", "@capacitor/app": "^5.0.0", "@capacitor/core": "^5.0.0", diff --git a/src/lib/adapters/GoogleDrive.ts b/src/lib/adapters/GoogleDrive.ts index ed42facd78..41fd811f97 100644 --- a/src/lib/adapters/GoogleDrive.ts +++ b/src/lib/adapters/GoogleDrive.ts @@ -12,7 +12,7 @@ import { } from '../../errors/Error' import { OAuth2Client } from '@byteowls/capacitor-oauth2' import { Capacitor } from '@capacitor/core' -import { Http } from '@capacitor-community/http' +import { CapacitorHttp as Http } from '@capacitor/core' const OAuthConfig = { authorizationBaseUrl: 'https://accounts.google.com/o/oauth2/auth', diff --git a/src/lib/adapters/WebDav.ts b/src/lib/adapters/WebDav.ts index 3fa5d5f93f..9577b6ec21 100644 --- a/src/lib/adapters/WebDav.ts +++ b/src/lib/adapters/WebDav.ts @@ -13,7 +13,7 @@ import { NetworkError, RedirectError, SlashError } from '../../errors/Error' -import { Http } from '@capacitor-community/http' +import { CapacitorHttp as Http } from '@capacitor/core' import { Capacitor } from '@capacitor/core' import Html from '../serializers/Html' diff --git a/src/ui/components/native/FaviconImage.vue b/src/ui/components/native/FaviconImage.vue index 29e1a14c3a..5ac6dd6605 100644 --- a/src/ui/components/native/FaviconImage.vue +++ b/src/ui/components/native/FaviconImage.vue @@ -13,7 +13,7 @@