Skip to content

Commit

Permalink
fix(api): drop at symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
ernado committed Apr 18, 2024
1 parent fa2cf1e commit 67ab816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/api/badge.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func etag(name string, data []byte) string {
func (s Server) GetTelegramBadge(ctx context.Context, params oas.GetTelegramBadgeParams) (*oas.GetTelegramBadgeOKHeaders, error) {
var members int
{
peer, err := s.resolver.ResolveDomain(ctx, "@"+params.GroupName)
peer, err := s.resolver.ResolveDomain(ctx, params.GroupName)
if err != nil {
return nil, errors.Wrap(err, "resolve domain")
}
Expand Down

0 comments on commit 67ab816

Please sign in to comment.