Skip to content

Commit

Permalink
fix: remove unncessary print
Browse files Browse the repository at this point in the history
  • Loading branch information
damonto committed Aug 21, 2024
1 parent 3c34ebc commit f926341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cloud/download.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ func decodeActivationCode(activationCode []byte) (*lpac.ActivationCode, error) {
parts = bytes.Split(activationCode[:index], GSMDollarSign)
} else {
parts = bytes.Split(activationCode, GSMDollarSign)
fmt.Println("activationCode", activationCode, "parts", parts)
}

if len(parts) < 2 && string(parts[0]) != "LPA:1" {
return nil, ErrInvalidActivationCode
}

var matchingId string
if len(parts) > 2 {
matchingId = string(parts[2])
Expand Down

0 comments on commit f926341

Please sign in to comment.