Skip to content

Commit 5f6e00e

Browse files
authored
attributioncode: allow installer_type key (#98)
1 parent 2a397d5 commit 5f6e00e

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

attributioncode/validator.go

+8-7
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@ import (
1717
const maxUnescapedCodeLen = 1010
1818

1919
var validAttributionKeys = map[string]bool{
20-
"source": true,
21-
"medium": true,
22-
"campaign": true,
23-
"content": true,
24-
"experiment": true,
25-
"variation": true,
26-
"ua": true,
20+
"source": true,
21+
"medium": true,
22+
"campaign": true,
23+
"content": true,
24+
"experiment": true,
25+
"installer_type": true,
26+
"variation": true,
27+
"ua": true,
2728
}
2829

2930
// If any of these are not set in the incoming payload, they will be set to '(not set)'

0 commit comments

Comments
 (0)