mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #1124 from omnivore-app/fix/android-client-id-update
Android client id fix
This commit is contained in:
commit
80f91d42bf
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ export async function decodeGoogleToken(
|
|||
|
||||
const loginTicket = await googleMobileClient.verifyIdToken({
|
||||
idToken,
|
||||
audience: isAndroid ? webClientId : iosClientId,
|
||||
audience: isAndroid ? env.google.auth.androidClientId : iosClientId,
|
||||
})
|
||||
|
||||
const email = loginTicket.getPayload()?.email
|
||||
|
|
|
|||
Loading…
Reference in a new issue