We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0463d2a commit f46bbefCopy full SHA for f46bbef
auth/src/main/java/com/google/firebase/quickstart/AuthSnippets.java
@@ -219,8 +219,7 @@ public static void verifyIdTokenCheckRevoked(String idToken) throws InterruptedE
219
FirebaseToken decodedToken = FirebaseAuth.getInstance().verifyIdTokenAsync(idToken, checkRevoked).get();
220
// Token is valid and not revoked.
221
String uid = decodedToken.getUid();
222
- }
223
- catch (FirebaseAuthException e) {
+ } catch (FirebaseAuthException e) {
224
if ("id-token-revoked".equals(e.getErrorCode())) {
225
// Token has been revoked. Inform the user to reauthenticate or signOut() the user.
226
} else {
0 commit comments