Details
-
Bug
-
Resolution: Done
-
Major - P3
-
None
-
1.0.0-rc2
-
None
-
Mac
Description
Fields having 3 characters are not stored:
...
|
type CheckResults struct {
|
domain string
|
rct string
|
rst string
|
stt string
|
spt string
|
rsc int |
rsm string
|
}
|
...
|
|
|
func main() {
|
...
|
PostResults := CheckResults{"domain.tld", "rct-example", "rst-example", "stt-example", "spt-example", 100, "rsm-example"} |
...
|
}
|
This will create (in my code) a collection, a document but no fields and data, not even for "domain".
If I do change the length of these for example DomainName, RecordTime and so on the data will get stored.