Skip to content

Commit

Permalink
add new
Browse files Browse the repository at this point in the history
  • Loading branch information
idprm committed Oct 8, 2024
1 parent 3310671 commit 3033d6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/domain/model/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ func (s *MORequest) GetTo() string {
}

func (s *MORequest) GetMsisdn() string {
return s.Msisdn
replacer := strings.NewReplacer("+", "")
return replacer.Replace(s.Msisdn)
}

func (s *MORequest) GetIpAddress() string {
Expand Down

0 comments on commit 3033d6d

Please sign in to comment.