Skip to content

Commit

Permalink
fix: Avoid duplication in the definition names
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinszuchet committed Jan 16, 2025
1 parent 5fa9a47 commit 6a27123
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion proto/decentraland/social_service/v1/social_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ message SubscribeFriendshipEventsUpdatesResponse {
}

// @deprecated, only available for old explorer compatibility
service FriendshipsService {
service SocialServiceV1 {
// Get the list of friends for the authenticated user
rpc GetFriends(Payload) returns (stream UsersResponse) {}

Expand Down
2 changes: 1 addition & 1 deletion proto/decentraland/social_service/v2/social_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ message FriendshipUpdate {
}

// @deprecated, used for initial migration without Matrix
service SocialService {
service SocialServiceV2 {
// Get the list of friends for the authenticated user
rpc GetFriends(google.protobuf.Empty) returns (stream UsersResponse) {}

Expand Down
2 changes: 1 addition & 1 deletion proto/decentraland/social_service/v3/social_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ message GetFriendshipStatusResponse {
}
}

service SocialService {
service SocialServiceV3 {
// Get the list of friends for the authenticated user
rpc GetFriends(GetFriendsPayload) returns (PaginatedUsersResponse) {}

Expand Down

0 comments on commit 6a27123

Please sign in to comment.