fix: missing display name when requesting to join a community (#2725)

This commit is contained in:
Richard Ramos 2022-06-22 14:02:44 -04:00 committed by GitHub
parent dca550e1a7
commit 31feea9f15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 102 additions and 79 deletions

View file

@ -354,6 +354,11 @@ func (m *Messenger) RequestToJoinCommunity(request *requests.RequestToJoinCommun
return nil, err
}
displayName, err := m.settings.DisplayName()
if err != nil {
return nil, err
}
community, requestToJoin, err := m.communitiesManager.RequestToJoin(&m.identity.PublicKey, request)
if err != nil {
return nil, err
@ -366,6 +371,7 @@ func (m *Messenger) RequestToJoinCommunity(request *requests.RequestToJoinCommun
requestToJoinProto := &protobuf.CommunityRequestToJoin{
Clock: requestToJoin.Clock,
EnsName: requestToJoin.ENSName,
DisplayName: displayName,
CommunityId: community.ID(),
}

View file

@ -961,6 +961,13 @@ func (m *Messenger) HandleCommunityRequestToJoin(state *ReceivedMessageState, si
contact, _ := state.AllContacts.Load(contactID)
if len(requestToJoinProto.DisplayName) != 0 {
contact.DisplayName = requestToJoinProto.DisplayName
state.ModifiedContacts.Store(contact.ID, true)
state.AllContacts.Store(contact.ID, contact)
state.ModifiedContacts.Store(contact.ID, true)
}
state.Response.AddNotification(NewCommunityRequestToJoinNotification(requestToJoin.ID.String(), community, contact))
return nil

View file

@ -597,6 +597,7 @@ type CommunityRequestToJoin struct {
EnsName string `protobuf:"bytes,2,opt,name=ens_name,json=ensName,proto3" json:"ens_name,omitempty"`
ChatId string `protobuf:"bytes,3,opt,name=chat_id,json=chatId,proto3" json:"chat_id,omitempty"`
CommunityId []byte `protobuf:"bytes,4,opt,name=community_id,json=communityId,proto3" json:"community_id,omitempty"`
DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -655,6 +656,13 @@ func (m *CommunityRequestToJoin) GetCommunityId() []byte {
return nil
}
func (m *CommunityRequestToJoin) GetDisplayName() string {
if m != nil {
return m.DisplayName
}
return ""
}
type CommunityRequestToJoinResponse struct {
Clock uint64 `protobuf:"varint,1,opt,name=clock,proto3" json:"clock,omitempty"`
Community *CommunityDescription `protobuf:"bytes,2,opt,name=community,proto3" json:"community,omitempty"`
@ -1103,87 +1111,88 @@ func init() {
}
var fileDescriptor_f937943d74c1cd8b = []byte{
// 1299 bytes of a gzipped FileDescriptorProto
// 1315 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x4f, 0x6f, 0x1b, 0x45,
0x14, 0xef, 0xfa, 0xbf, 0x9f, 0xed, 0xd4, 0x99, 0xb6, 0xe9, 0x36, 0xa5, 0x8d, 0xbb, 0x80, 0xe4,
0x0a, 0xe1, 0xaa, 0xa9, 0x90, 0x2a, 0xfe, 0xb4, 0x75, 0x53, 0xab, 0x98, 0x26, 0x76, 0x3b, 0x4e,
0x28, 0xf4, 0xc0, 0x6a, 0xed, 0x9d, 0x38, 0xa3, 0xec, 0xce, 0x9a, 0x9d, 0x71, 0x84, 0x39, 0x70,
0x03, 0xf1, 0x11, 0x90, 0x38, 0x22, 0xf1, 0x45, 0xb8, 0x73, 0xe7, 0xc6, 0x47, 0x41, 0x33, 0xb3,
0xbb, 0x5e, 0x27, 0x76, 0x1a, 0xa9, 0xe2, 0xb4, 0xf3, 0xde, 0xbc, 0xf7, 0x9b, 0xf7, 0xff, 0x2d,
0xac, 0x8f, 0x02, 0xdf, 0x9f, 0x32, 0x2a, 0x28, 0xe1, 0xad, 0x49, 0x18, 0x88, 0x00, 0x95, 0xd4,
0x67, 0x38, 0x3d, 0xdc, 0xbc, 0x32, 0x3a, 0x72, 0x84, 0x4d, 0x5d, 0xc2, 0x04, 0x15, 0x33, 0x7d,
0x6d, 0x9d, 0x40, 0xfe, 0x79, 0xe8, 0x30, 0x81, 0xee, 0x40, 0x35, 0x56, 0x9e, 0xd9, 0xd4, 0x35,
0x8d, 0x86, 0xd1, 0xac, 0xe2, 0x4a, 0xc2, 0xeb, 0xba, 0xe8, 0x26, 0x94, 0x7d, 0xe2, 0x0f, 0x49,
0x28, 0xef, 0x33, 0xea, 0xbe, 0xa4, 0x19, 0x5d, 0x17, 0x5d, 0x87, 0x62, 0x84, 0x6f, 0x66, 0x1b,
0x46, 0xb3, 0x8c, 0x0b, 0x92, 0xec, 0xba, 0xe8, 0x2a, 0xe4, 0x47, 0x5e, 0x30, 0x3a, 0x36, 0x73,
0x0d, 0xa3, 0x99, 0xc3, 0x9a, 0xb0, 0x7e, 0x35, 0xe0, 0xf2, 0x4e, 0x8c, 0xbd, 0xa7, 0x40, 0xd0,
0x27, 0x90, 0x0f, 0x03, 0x8f, 0x70, 0xd3, 0x68, 0x64, 0x9b, 0x6b, 0xdb, 0x5b, 0xad, 0xd8, 0xf4,
0xd6, 0x29, 0xc9, 0x16, 0x96, 0x62, 0x58, 0x4b, 0x5b, 0x8f, 0x20, 0xaf, 0x68, 0x54, 0x87, 0xea,
0x41, 0xef, 0x45, 0xaf, 0xff, 0xba, 0x67, 0xe3, 0xfe, 0x6e, 0xa7, 0x7e, 0x09, 0x55, 0xa1, 0x24,
0x4f, 0x76, 0x7b, 0x77, 0xb7, 0x6e, 0xa0, 0x6b, 0xb0, 0xae, 0xa8, 0xbd, 0x76, 0xaf, 0xfd, 0xbc,
0x63, 0x1f, 0x0c, 0x3a, 0x78, 0x50, 0xcf, 0x58, 0xff, 0x1a, 0x70, 0x35, 0x79, 0xe0, 0x25, 0x09,
0x7d, 0xca, 0x39, 0x0d, 0x18, 0x47, 0x37, 0xa0, 0x44, 0x18, 0xb7, 0x03, 0xe6, 0xcd, 0x54, 0x38,
0x4a, 0xb8, 0x48, 0x18, 0xef, 0x33, 0x6f, 0x86, 0x4c, 0x28, 0x4e, 0x42, 0x7a, 0xe2, 0x08, 0xa2,
0x02, 0x51, 0xc2, 0x31, 0x89, 0xbe, 0x80, 0x82, 0x33, 0x1a, 0x11, 0xce, 0x55, 0x18, 0xd6, 0xb6,
0x3f, 0x5c, 0xe2, 0x45, 0xea, 0x91, 0x56, 0x5b, 0x09, 0xe3, 0x48, 0xc9, 0xda, 0x87, 0x82, 0xe6,
0x20, 0x04, 0x6b, 0xb1, 0x37, 0xed, 0x9d, 0x9d, 0xce, 0x60, 0x50, 0xbf, 0x84, 0xd6, 0xa1, 0xd6,
0xeb, 0xdb, 0x7b, 0x9d, 0xbd, 0xa7, 0x1d, 0x3c, 0xf8, 0xb2, 0xfb, 0xb2, 0x6e, 0xa0, 0x2b, 0x70,
0xb9, 0xdb, 0xfb, 0xba, 0xbb, 0xdf, 0xde, 0xef, 0xf6, 0x7b, 0x76, 0xbf, 0xb7, 0xfb, 0x6d, 0x3d,
0x83, 0xd6, 0x00, 0xfa, 0x3d, 0x1b, 0x77, 0x5e, 0x1d, 0x74, 0x06, 0xfb, 0xf5, 0xac, 0xf5, 0x4b,
0x31, 0xe5, 0xe2, 0x33, 0xc2, 0x47, 0x21, 0x9d, 0x08, 0x1a, 0xb0, 0x79, 0x72, 0x8c, 0x54, 0x72,
0x50, 0x07, 0x8a, 0x3a, 0xaf, 0xdc, 0xcc, 0x34, 0xb2, 0xcd, 0xca, 0xf6, 0x47, 0x4b, 0x9c, 0x48,
0xc1, 0xb4, 0x74, 0x5a, 0x78, 0x87, 0x89, 0x70, 0x86, 0x63, 0x5d, 0xf4, 0x04, 0x2a, 0x93, 0xb9,
0xa7, 0x2a, 0x1e, 0x95, 0xed, 0xdb, 0xe7, 0xc7, 0x03, 0xa7, 0x55, 0xd0, 0x36, 0x94, 0xe2, 0x7a,
0x35, 0xf3, 0x4a, 0x7d, 0x23, 0xa5, 0xae, 0xea, 0x4b, 0xdf, 0xe2, 0x44, 0x0e, 0x3d, 0x86, 0xbc,
0xac, 0x3c, 0x6e, 0x16, 0x94, 0xe9, 0x77, 0xdf, 0x62, 0xba, 0x44, 0x89, 0x0c, 0xd7, 0x7a, 0x32,
0xed, 0x43, 0x87, 0xd9, 0x1e, 0xe5, 0xc2, 0x2c, 0x36, 0xb2, 0xcd, 0x32, 0x2e, 0x0e, 0x1d, 0xb6,
0x4b, 0xb9, 0x40, 0x3d, 0x80, 0x91, 0x23, 0xc8, 0x38, 0x08, 0x29, 0xe1, 0x66, 0x49, 0x3d, 0xd0,
0x7a, 0xdb, 0x03, 0x89, 0x82, 0x7e, 0x25, 0x85, 0x80, 0x1e, 0x82, 0xe9, 0x84, 0xa3, 0x23, 0x7a,
0x42, 0x6c, 0xdf, 0x19, 0x33, 0x22, 0x3c, 0xca, 0x8e, 0x6d, 0x9d, 0x91, 0xb2, 0xca, 0xc8, 0x46,
0x74, 0xbf, 0x97, 0x5c, 0xef, 0xa8, 0x14, 0x3d, 0x87, 0x35, 0xc7, 0xf5, 0x29, 0xb3, 0x39, 0x11,
0x82, 0xb2, 0x31, 0x37, 0x41, 0xc5, 0xa7, 0xb1, 0xc4, 0x9a, 0xb6, 0x14, 0x1c, 0x44, 0x72, 0xb8,
0xe6, 0xa4, 0x49, 0xf4, 0x3e, 0xd4, 0x28, 0x13, 0x61, 0x60, 0xfb, 0x84, 0x73, 0x67, 0x4c, 0xcc,
0x8a, 0xea, 0xde, 0xaa, 0x62, 0xee, 0x69, 0x9e, 0x14, 0x0a, 0xa6, 0x69, 0xa1, 0xaa, 0x16, 0x52,
0xcc, 0x58, 0xe8, 0x3d, 0x28, 0x13, 0x36, 0x0a, 0x67, 0x13, 0x41, 0x5c, 0xb3, 0xa6, 0xba, 0x62,
0xce, 0xd8, 0x3c, 0x80, 0x6a, 0xba, 0x4a, 0x50, 0x1d, 0xb2, 0xc7, 0x44, 0xf7, 0x55, 0x19, 0xcb,
0x23, 0xba, 0x07, 0xf9, 0x13, 0xc7, 0x9b, 0xea, 0x8e, 0xaa, 0x6c, 0xdf, 0x58, 0xd9, 0xfe, 0x58,
0xcb, 0x7d, 0x9a, 0x79, 0x68, 0x6c, 0xbe, 0x02, 0x98, 0x67, 0x70, 0x09, 0xe8, 0xc7, 0x8b, 0xa0,
0xd7, 0x97, 0x80, 0x4a, 0xfd, 0x34, 0xe4, 0x1b, 0xb8, 0x7c, 0x2a, 0x67, 0x4b, 0x70, 0xef, 0x2f,
0xe2, 0xde, 0x5c, 0x86, 0xab, 0x41, 0x66, 0x29, 0x6c, 0xeb, 0x3b, 0xd8, 0x58, 0x9e, 0x16, 0xf4,
0x0c, 0xb6, 0x26, 0x94, 0xc5, 0x01, 0xb6, 0x1d, 0xcf, 0xb3, 0xa3, 0x3e, 0xb2, 0x09, 0x73, 0x86,
0x1e, 0x71, 0xa3, 0x19, 0x74, 0x73, 0x42, 0x59, 0x14, 0xf2, 0xb6, 0xe7, 0x25, 0x31, 0x55, 0x22,
0xd6, 0x3f, 0x19, 0xa8, 0x2d, 0x38, 0x86, 0x1e, 0xcd, 0x7b, 0xd9, 0x50, 0xf5, 0xfa, 0xc1, 0x8a,
0x10, 0x5c, 0xac, 0x89, 0x33, 0xef, 0xd6, 0xc4, 0xd9, 0x0b, 0x36, 0xf1, 0x16, 0x54, 0xa2, 0x36,
0x51, 0xcb, 0x28, 0xa7, 0x02, 0x1f, 0x77, 0x8e, 0xdc, 0x45, 0x9b, 0x50, 0x9a, 0x04, 0x9c, 0xca,
0x0e, 0x53, 0x93, 0x21, 0x8f, 0x13, 0xfa, 0x7f, 0x2a, 0x35, 0xcb, 0x85, 0xf5, 0x33, 0xb9, 0x3d,
0x6d, 0xa8, 0x71, 0xc6, 0x50, 0x04, 0x39, 0xe6, 0xf8, 0xfa, 0xa5, 0x32, 0x56, 0xe7, 0x05, 0xe3,
0xb3, 0x8b, 0xc6, 0x5b, 0xbf, 0x19, 0x70, 0x25, 0x79, 0xa6, 0xcb, 0x4e, 0xa8, 0x70, 0xd4, 0xa4,
0x7e, 0x00, 0xd7, 0xe6, 0xfb, 0xd9, 0x9d, 0xcf, 0x97, 0x68, 0x51, 0x5f, 0x1d, 0xad, 0x18, 0xef,
0x63, 0xb9, 0xdd, 0xa3, 0x6d, 0xad, 0x89, 0xd5, 0xab, 0xfa, 0x16, 0xc0, 0x64, 0x3a, 0xf4, 0xe8,
0xc8, 0x96, 0xf1, 0xca, 0x29, 0x9d, 0xb2, 0xe6, 0xbc, 0x20, 0x33, 0xeb, 0x67, 0x23, 0x55, 0xbd,
0x98, 0x7c, 0x3f, 0x25, 0x5c, 0xec, 0x07, 0x5f, 0x05, 0x74, 0xd5, 0x1e, 0x89, 0x16, 0x68, 0xca,
0x7f, 0xb9, 0x40, 0x7b, 0x32, 0x04, 0x2b, 0x6d, 0x38, 0xfd, 0x1f, 0x92, 0x3b, 0xf3, 0x1f, 0x62,
0xfd, 0x69, 0xc0, 0xed, 0xe5, 0x76, 0x60, 0xc2, 0x27, 0x01, 0xe3, 0x64, 0x85, 0x3d, 0x9f, 0x43,
0x39, 0xc1, 0x39, 0xa7, 0x92, 0x53, 0x11, 0xc4, 0x73, 0x05, 0x99, 0x35, 0xb9, 0xa4, 0xd5, 0x78,
0xcb, 0xaa, 0x56, 0x4c, 0xe8, 0x79, 0xa0, 0x73, 0xa9, 0x40, 0x5b, 0xdf, 0xc0, 0x9d, 0x54, 0x3d,
0xe9, 0x96, 0x3d, 0x3d, 0xce, 0x57, 0x98, 0x7a, 0x0b, 0x40, 0x6f, 0x04, 0x7b, 0x1a, 0xd2, 0x28,
0x78, 0x65, 0xcd, 0x39, 0x08, 0xa9, 0xf5, 0xbb, 0x01, 0x95, 0xd7, 0xce, 0xf1, 0x34, 0x9e, 0xbd,
0x75, 0xc8, 0x72, 0x3a, 0x8e, 0x6a, 0x41, 0x1e, 0xe5, 0x34, 0x16, 0xd4, 0x27, 0x5c, 0x38, 0xfe,
0x44, 0xe9, 0xe7, 0xf0, 0x9c, 0x21, 0x1f, 0x15, 0xc1, 0x84, 0x8e, 0x94, 0x23, 0x55, 0xac, 0x09,
0xf5, 0x57, 0xe3, 0xcc, 0xbc, 0xc0, 0x89, 0xc3, 0x1e, 0x93, 0xfa, 0xc6, 0x75, 0x29, 0x1b, 0xab,
0x6e, 0x53, 0x37, 0x8a, 0x94, 0xf5, 0x7d, 0xe4, 0xf0, 0x23, 0xb3, 0xa0, 0xd8, 0xea, 0x6c, 0xfd,
0x04, 0x9b, 0x29, 0xe3, 0x62, 0x97, 0x89, 0x70, 0x5c, 0x47, 0x38, 0x12, 0xeb, 0x84, 0x84, 0x3c,
0xae, 0xdd, 0x1a, 0x8e, 0x49, 0x89, 0x75, 0x18, 0x06, 0x7e, 0x64, 0xae, 0x3a, 0xa3, 0x35, 0xc8,
0x88, 0x40, 0x99, 0x99, 0xc3, 0x19, 0x11, 0x20, 0x4b, 0xd6, 0x07, 0x13, 0x84, 0x89, 0x7d, 0xe5,
0x40, 0xae, 0x91, 0x6d, 0x56, 0xf1, 0x02, 0xcf, 0xfa, 0xc3, 0x00, 0x74, 0xd6, 0x80, 0x73, 0x1e,
0x7e, 0x02, 0x25, 0x3f, 0x32, 0x2f, 0xaa, 0x8b, 0xd4, 0x94, 0x5c, 0xed, 0x0a, 0x4e, 0xb4, 0xd0,
0x7d, 0x89, 0xa0, 0x64, 0xe4, 0x8f, 0x8e, 0x9c, 0xb3, 0xd7, 0x96, 0x22, 0xe0, 0x44, 0xcc, 0xfa,
0xcb, 0x80, 0xad, 0xb3, 0xd8, 0x5d, 0xe6, 0x92, 0x1f, 0x2e, 0x10, 0xab, 0x77, 0x37, 0x79, 0x03,
0x0a, 0xc1, 0xe1, 0x21, 0x27, 0x22, 0x8a, 0x6e, 0x44, 0xc9, 0x2c, 0x70, 0xfa, 0x23, 0x89, 0xfe,
0xd7, 0xd5, 0xf9, 0x74, 0xfe, 0x73, 0x49, 0xfe, 0xad, 0xbf, 0x0d, 0xb8, 0xbe, 0xc2, 0x0b, 0xf4,
0x02, 0x4a, 0xd1, 0xef, 0x4b, 0xbc, 0x7c, 0xee, 0x9d, 0x67, 0xa3, 0x52, 0x6a, 0x45, 0x44, 0xb4,
0x87, 0x12, 0x80, 0xcd, 0x43, 0xa8, 0x2d, 0x5c, 0x2d, 0x19, 0xeb, 0x8f, 0x17, 0xc7, 0xfa, 0xdd,
0xb7, 0x3e, 0x96, 0x44, 0x65, 0x3e, 0xe6, 0x9f, 0xd6, 0xde, 0x54, 0x5a, 0xf7, 0x3e, 0x8b, 0x35,
0x87, 0x05, 0x75, 0x7a, 0xf0, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf5, 0x6d, 0x73, 0x8c, 0x5b,
0x28, 0xf4, 0xc0, 0x6a, 0xed, 0x9d, 0x38, 0xa3, 0xac, 0x67, 0x97, 0x9d, 0x71, 0x84, 0x39, 0x70,
0x44, 0x7c, 0x04, 0x24, 0x8e, 0x48, 0x88, 0xef, 0xc1, 0x9d, 0x3b, 0x37, 0x3e, 0x0a, 0x9a, 0x99,
0xdd, 0xf5, 0x3a, 0xb1, 0xd3, 0x48, 0x15, 0xa7, 0x9d, 0xf7, 0xe6, 0xbd, 0xdf, 0xbc, 0xff, 0x6f,
0x61, 0x7d, 0xe4, 0x4f, 0x26, 0x53, 0x46, 0x05, 0x25, 0xbc, 0x15, 0x84, 0xbe, 0xf0, 0x51, 0x49,
0x7d, 0x86, 0xd3, 0xc3, 0xcd, 0x2b, 0xa3, 0x23, 0x47, 0xd8, 0xd4, 0x25, 0x4c, 0x50, 0x31, 0xd3,
0xd7, 0xd6, 0x09, 0xe4, 0x9f, 0x87, 0x0e, 0x13, 0xe8, 0x0e, 0x54, 0x63, 0xe5, 0x99, 0x4d, 0x5d,
0xd3, 0x68, 0x18, 0xcd, 0x2a, 0xae, 0x24, 0xbc, 0xae, 0x8b, 0x6e, 0x42, 0x79, 0x42, 0x26, 0x43,
0x12, 0xca, 0xfb, 0x8c, 0xba, 0x2f, 0x69, 0x46, 0xd7, 0x45, 0xd7, 0xa1, 0x18, 0xe1, 0x9b, 0xd9,
0x86, 0xd1, 0x2c, 0xe3, 0x82, 0x24, 0xbb, 0x2e, 0xba, 0x0a, 0xf9, 0x91, 0xe7, 0x8f, 0x8e, 0xcd,
0x5c, 0xc3, 0x68, 0xe6, 0xb0, 0x26, 0xac, 0x5f, 0x0c, 0xb8, 0xbc, 0x13, 0x63, 0xef, 0x29, 0x10,
0xf4, 0x09, 0xe4, 0x43, 0xdf, 0x23, 0xdc, 0x34, 0x1a, 0xd9, 0xe6, 0xda, 0xf6, 0x56, 0x2b, 0x36,
0xbd, 0x75, 0x4a, 0xb2, 0x85, 0xa5, 0x18, 0xd6, 0xd2, 0xd6, 0x23, 0xc8, 0x2b, 0x1a, 0xd5, 0xa1,
0x7a, 0xd0, 0x7b, 0xd1, 0xeb, 0xbf, 0xee, 0xd9, 0xb8, 0xbf, 0xdb, 0xa9, 0x5f, 0x42, 0x55, 0x28,
0xc9, 0x93, 0xdd, 0xde, 0xdd, 0xad, 0x1b, 0xe8, 0x1a, 0xac, 0x2b, 0x6a, 0xaf, 0xdd, 0x6b, 0x3f,
0xef, 0xd8, 0x07, 0x83, 0x0e, 0x1e, 0xd4, 0x33, 0xd6, 0xbf, 0x06, 0x5c, 0x4d, 0x1e, 0x78, 0x49,
0xc2, 0x09, 0xe5, 0x9c, 0xfa, 0x8c, 0xa3, 0x1b, 0x50, 0x22, 0x8c, 0xdb, 0x3e, 0xf3, 0x66, 0x2a,
0x1c, 0x25, 0x5c, 0x24, 0x8c, 0xf7, 0x99, 0x37, 0x43, 0x26, 0x14, 0x83, 0x90, 0x9e, 0x38, 0x82,
0xa8, 0x40, 0x94, 0x70, 0x4c, 0xa2, 0x2f, 0xa0, 0xe0, 0x8c, 0x46, 0x84, 0x73, 0x15, 0x86, 0xb5,
0xed, 0x0f, 0x97, 0x78, 0x91, 0x7a, 0xa4, 0xd5, 0x56, 0xc2, 0x38, 0x52, 0xb2, 0xf6, 0xa1, 0xa0,
0x39, 0x08, 0xc1, 0x5a, 0xec, 0x4d, 0x7b, 0x67, 0xa7, 0x33, 0x18, 0xd4, 0x2f, 0xa1, 0x75, 0xa8,
0xf5, 0xfa, 0xf6, 0x5e, 0x67, 0xef, 0x69, 0x07, 0x0f, 0xbe, 0xec, 0xbe, 0xac, 0x1b, 0xe8, 0x0a,
0x5c, 0xee, 0xf6, 0xbe, 0xee, 0xee, 0xb7, 0xf7, 0xbb, 0xfd, 0x9e, 0xdd, 0xef, 0xed, 0x7e, 0x5b,
0xcf, 0xa0, 0x35, 0x80, 0x7e, 0xcf, 0xc6, 0x9d, 0x57, 0x07, 0x9d, 0xc1, 0x7e, 0x3d, 0x6b, 0xfd,
0x5c, 0x4c, 0xb9, 0xf8, 0x8c, 0xf0, 0x51, 0x48, 0x03, 0x41, 0x7d, 0x36, 0x4f, 0x8e, 0x91, 0x4a,
0x0e, 0xea, 0x40, 0x51, 0xe7, 0x95, 0x9b, 0x99, 0x46, 0xb6, 0x59, 0xd9, 0xfe, 0x68, 0x89, 0x13,
0x29, 0x98, 0x96, 0x4e, 0x0b, 0xef, 0x30, 0x11, 0xce, 0x70, 0xac, 0x8b, 0x9e, 0x40, 0x25, 0x98,
0x7b, 0xaa, 0xe2, 0x51, 0xd9, 0xbe, 0x7d, 0x7e, 0x3c, 0x70, 0x5a, 0x05, 0x6d, 0x43, 0x29, 0xae,
0x57, 0x33, 0xaf, 0xd4, 0x37, 0x52, 0xea, 0xaa, 0xbe, 0xf4, 0x2d, 0x4e, 0xe4, 0xd0, 0x63, 0xc8,
0xcb, 0xca, 0xe3, 0x66, 0x41, 0x99, 0x7e, 0xf7, 0x2d, 0xa6, 0x4b, 0x94, 0xc8, 0x70, 0xad, 0x27,
0xd3, 0x3e, 0x74, 0x98, 0xed, 0x51, 0x2e, 0xcc, 0x62, 0x23, 0xdb, 0x2c, 0xe3, 0xe2, 0xd0, 0x61,
0xbb, 0x94, 0x0b, 0xd4, 0x03, 0x18, 0x39, 0x82, 0x8c, 0xfd, 0x90, 0x12, 0x6e, 0x96, 0xd4, 0x03,
0xad, 0xb7, 0x3d, 0x90, 0x28, 0xe8, 0x57, 0x52, 0x08, 0xe8, 0x21, 0x98, 0x4e, 0x38, 0x3a, 0xa2,
0x27, 0xc4, 0x9e, 0x38, 0x63, 0x46, 0x84, 0x47, 0xd9, 0xb1, 0xad, 0x33, 0x52, 0x56, 0x19, 0xd9,
0x88, 0xee, 0xf7, 0x92, 0xeb, 0x1d, 0x95, 0xa2, 0xe7, 0xb0, 0xe6, 0xb8, 0x13, 0xca, 0x6c, 0x4e,
0x84, 0xa0, 0x6c, 0xcc, 0x4d, 0x50, 0xf1, 0x69, 0x2c, 0xb1, 0xa6, 0x2d, 0x05, 0x07, 0x91, 0x1c,
0xae, 0x39, 0x69, 0x12, 0xbd, 0x0f, 0x35, 0xca, 0x44, 0xe8, 0xdb, 0x13, 0xc2, 0xb9, 0x33, 0x26,
0x66, 0x45, 0x75, 0x6f, 0x55, 0x31, 0xf7, 0x34, 0x4f, 0x0a, 0xf9, 0xd3, 0xb4, 0x50, 0x55, 0x0b,
0x29, 0x66, 0x2c, 0xf4, 0x1e, 0x94, 0x09, 0x1b, 0x85, 0xb3, 0x40, 0x10, 0xd7, 0xac, 0xa9, 0xae,
0x98, 0x33, 0x36, 0x0f, 0xa0, 0x9a, 0xae, 0x12, 0x54, 0x87, 0xec, 0x31, 0xd1, 0x7d, 0x55, 0xc6,
0xf2, 0x88, 0xee, 0x41, 0xfe, 0xc4, 0xf1, 0xa6, 0xba, 0xa3, 0x2a, 0xdb, 0x37, 0x56, 0xb6, 0x3f,
0xd6, 0x72, 0x9f, 0x66, 0x1e, 0x1a, 0x9b, 0xaf, 0x00, 0xe6, 0x19, 0x5c, 0x02, 0xfa, 0xf1, 0x22,
0xe8, 0xf5, 0x25, 0xa0, 0x52, 0x3f, 0x0d, 0xf9, 0x06, 0x2e, 0x9f, 0xca, 0xd9, 0x12, 0xdc, 0xfb,
0x8b, 0xb8, 0x37, 0x97, 0xe1, 0x6a, 0x90, 0x59, 0x0a, 0xdb, 0xfa, 0x0e, 0x36, 0x96, 0xa7, 0x05,
0x3d, 0x83, 0xad, 0x80, 0xb2, 0x38, 0xc0, 0xb6, 0xe3, 0x79, 0x76, 0xd4, 0x47, 0x36, 0x61, 0xce,
0xd0, 0x23, 0x6e, 0x34, 0x83, 0x6e, 0x06, 0x94, 0x45, 0x21, 0x6f, 0x7b, 0x5e, 0x12, 0x53, 0x25,
0x62, 0xfd, 0x93, 0x81, 0xda, 0x82, 0x63, 0xe8, 0xd1, 0xbc, 0x97, 0x0d, 0x55, 0xaf, 0x1f, 0xac,
0x08, 0xc1, 0xc5, 0x9a, 0x38, 0xf3, 0x6e, 0x4d, 0x9c, 0xbd, 0x60, 0x13, 0x6f, 0x41, 0x25, 0x6a,
0x13, 0xb5, 0x8c, 0x72, 0x2a, 0xf0, 0x71, 0xe7, 0xc8, 0x5d, 0xb4, 0x09, 0xa5, 0xc0, 0xe7, 0x54,
0x76, 0x98, 0x9a, 0x0c, 0x79, 0x9c, 0xd0, 0xff, 0x53, 0xa9, 0x59, 0x2e, 0xac, 0x9f, 0xc9, 0xed,
0x69, 0x43, 0x8d, 0x33, 0x86, 0x22, 0xc8, 0x31, 0x67, 0xa2, 0x5f, 0x2a, 0x63, 0x75, 0x5e, 0x30,
0x3e, 0xbb, 0x68, 0xbc, 0xf5, 0xab, 0x01, 0x57, 0x92, 0x67, 0xba, 0xec, 0x84, 0x0a, 0x47, 0x4d,
0xea, 0x07, 0x70, 0x6d, 0xbe, 0x9f, 0xdd, 0xf9, 0x7c, 0x89, 0x16, 0xf5, 0xd5, 0xd1, 0x8a, 0xf1,
0x3e, 0x96, 0xdb, 0x3d, 0xda, 0xd6, 0x9a, 0x58, 0xbd, 0xaa, 0x6f, 0x01, 0x04, 0xd3, 0xa1, 0x47,
0x47, 0xb6, 0x8c, 0x57, 0x4e, 0xe9, 0x94, 0x35, 0xe7, 0x05, 0x99, 0x59, 0x7f, 0x1a, 0xa9, 0xea,
0xc5, 0xe4, 0xfb, 0x29, 0xe1, 0x62, 0xdf, 0xff, 0xca, 0xa7, 0xab, 0xf6, 0x48, 0xb4, 0x40, 0x53,
0xfe, 0xcb, 0x05, 0xda, 0x93, 0x21, 0x58, 0x69, 0xc3, 0xe9, 0xff, 0x90, 0xdc, 0xd9, 0xff, 0x90,
0x3b, 0x50, 0x75, 0x29, 0x0f, 0x3c, 0x67, 0xa6, 0xa1, 0xf3, 0x0a, 0xa0, 0x12, 0xf1, 0x24, 0xbc,
0xf5, 0x87, 0x01, 0xb7, 0x97, 0x9b, 0x8a, 0x09, 0x0f, 0x7c, 0xc6, 0xc9, 0x0a, 0x93, 0x3f, 0x87,
0x72, 0xf2, 0xd4, 0x39, 0xc5, 0x9e, 0x0a, 0x32, 0x9e, 0x2b, 0xc8, 0xc4, 0xca, 0x3d, 0xae, 0x26,
0x60, 0x56, 0x75, 0x6b, 0x42, 0xcf, 0x73, 0x91, 0x4b, 0xe5, 0xc2, 0xfa, 0x06, 0xee, 0xa4, 0x4a,
0x4e, 0x77, 0xf5, 0xe9, 0x89, 0xbf, 0xc2, 0xd4, 0x5b, 0x00, 0x7a, 0x69, 0xd8, 0xd3, 0x90, 0x46,
0xf1, 0x2d, 0x6b, 0xce, 0x41, 0x48, 0xad, 0xdf, 0x0c, 0xa8, 0xbc, 0x76, 0x8e, 0xa7, 0xf1, 0x78,
0xae, 0x43, 0x96, 0xd3, 0x71, 0x54, 0x2e, 0xf2, 0x28, 0x07, 0xb6, 0xa0, 0x13, 0xc2, 0x85, 0x33,
0x09, 0x94, 0x7e, 0x0e, 0xcf, 0x19, 0xf2, 0x51, 0xe1, 0x07, 0x74, 0xa4, 0x1c, 0xa9, 0x62, 0x4d,
0xa8, 0x1f, 0x1f, 0x67, 0xe6, 0xf9, 0x4e, 0x9c, 0x99, 0x98, 0xd4, 0x37, 0xae, 0x4b, 0xd9, 0x58,
0x25, 0x44, 0xdd, 0x28, 0x52, 0xb6, 0xc0, 0x91, 0xc3, 0x8f, 0xcc, 0x82, 0x62, 0xab, 0xb3, 0xf5,
0x13, 0x6c, 0xa6, 0x8c, 0x8b, 0x5d, 0x26, 0xc2, 0x71, 0x1d, 0xe1, 0x48, 0xac, 0x13, 0x12, 0xf2,
0xb8, 0xbc, 0x6b, 0x38, 0x26, 0x25, 0xd6, 0x61, 0xe8, 0x4f, 0x22, 0x73, 0xd5, 0x19, 0xad, 0x41,
0x46, 0xf8, 0xca, 0xcc, 0x1c, 0xce, 0x08, 0x1f, 0x59, 0xb2, 0x84, 0x98, 0x20, 0x4c, 0xec, 0x2b,
0x07, 0x72, 0x8d, 0x6c, 0xb3, 0x8a, 0x17, 0x78, 0xd6, 0xef, 0x06, 0xa0, 0xb3, 0x06, 0x9c, 0xf3,
0xf0, 0x13, 0x28, 0x4d, 0x22, 0xf3, 0xa2, 0xba, 0x48, 0x0d, 0xd2, 0xd5, 0xae, 0xe0, 0x44, 0x0b,
0xdd, 0x97, 0x08, 0x4a, 0x46, 0xfe, 0x0b, 0xc9, 0x51, 0x7c, 0x6d, 0x29, 0x02, 0x4e, 0xc4, 0xac,
0xbf, 0x0c, 0xd8, 0x3a, 0x8b, 0xdd, 0x65, 0x2e, 0xf9, 0xe1, 0x02, 0xb1, 0x7a, 0x77, 0x93, 0x37,
0xa0, 0xe0, 0x1f, 0x1e, 0x72, 0x22, 0xa2, 0xe8, 0x46, 0x94, 0xcc, 0x02, 0xa7, 0x3f, 0x92, 0xe8,
0x97, 0x5e, 0x9d, 0x4f, 0xe7, 0x3f, 0x97, 0xe4, 0xdf, 0xfa, 0xdb, 0x80, 0xeb, 0x2b, 0xbc, 0x40,
0x2f, 0xa0, 0x14, 0xfd, 0xe1, 0xc4, 0xfb, 0xe9, 0xde, 0x79, 0x36, 0x2a, 0xa5, 0x56, 0x44, 0x44,
0xab, 0x2a, 0x01, 0xd8, 0x3c, 0x84, 0xda, 0xc2, 0xd5, 0x92, 0xc9, 0xff, 0x78, 0x71, 0xf2, 0xdf,
0x7d, 0xeb, 0x63, 0x49, 0x54, 0xe6, 0x9b, 0xe0, 0x69, 0xed, 0x4d, 0xa5, 0x75, 0xef, 0xb3, 0x58,
0x73, 0x58, 0x50, 0xa7, 0x07, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x1b, 0xf8, 0x1d, 0xcf, 0x7e,
0x0d, 0x00, 0x00,
}

View file

@ -80,6 +80,7 @@ message CommunityRequestToJoin {
string ens_name = 2;
string chat_id = 3;
bytes community_id = 4;
string display_name = 5;
}
message CommunityRequestToJoinResponse {