From f5fb2b3086bb9448a3ba64d321a8d0c358f9ca5b Mon Sep 17 00:00:00 2001 From: Kevin Szuchet Date: Wed, 22 Jan 2025 17:40:00 -0300 Subject: [PATCH] fix: change string for bool on has claimed name --- proto/decentraland/social_service/v2/social_service_v2.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/decentraland/social_service/v2/social_service_v2.proto b/proto/decentraland/social_service/v2/social_service_v2.proto index c9bbc309..289df1af 100644 --- a/proto/decentraland/social_service/v2/social_service_v2.proto +++ b/proto/decentraland/social_service/v2/social_service_v2.proto @@ -13,7 +13,7 @@ message User { string address = 1; } message FriendProfile { string address = 1; string name = 2; - string has_claimed_name = 3; + bool has_claimed_name = 3; string profile_picture_url = 4; }