From 0817cd92e4f8796701c2bfd8de3482a75e171533 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Wed, 12 Feb 2020 10:40:34 +0100 Subject: [PATCH] wrong bool field --- pkg/proto/v0/accounts.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/proto/v0/accounts.proto b/pkg/proto/v0/accounts.proto index ee310f5dbb..bc2dc1e0f8 100644 --- a/pkg/proto/v0/accounts.proto +++ b/pkg/proto/v0/accounts.proto @@ -37,13 +37,13 @@ message StandardClaims { string picture = 9; string website = 10; string email = 11; - boolean email_verified = 12; + bool email_verified = 12; string gender = 13; string birthdate = 14; string zoneinfo = 15; string locale = 16; string phone_number = 17; - boolean phone_number_verified = 18; + bool phone_number_verified = 18; int32 updated_at = 19; // JSON: address -> Message Address {} }