We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6efadaa commit 9ad84b2Copy full SHA for 9ad84b2
1 file changed
pkg/contexts/contexts.go
@@ -39,8 +39,7 @@ type CRE struct {
39
// Normalized returns a possibly modified CRE with normalized values.
40
func (c CRE) Normalized() CRE {
41
c.Org = strings.TrimPrefix(c.Org, "org_")
42
- c.Org = strings.TrimPrefix(c.Org, "0x")
43
- c.Org = strings.ToLower(c.Org)
+ // not hex like the others, so don't look for 0x or change case
44
45
c.Owner = strings.TrimPrefix(c.Owner, "owner_")
46
c.Owner = strings.TrimPrefix(c.Owner, "0x")
0 commit comments