From 3033d6d334024293be797445591581640afc891f Mon Sep 17 00:00:00 2001 From: Indra Pramana Date: Tue, 8 Oct 2024 16:34:27 +0700 Subject: [PATCH] add new --- internal/domain/model/request.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/domain/model/request.go b/internal/domain/model/request.go index 075139b..14aca87 100644 --- a/internal/domain/model/request.go +++ b/internal/domain/model/request.go @@ -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 {