We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 465af7f commit 7a0b0f0Copy full SHA for 7a0b0f0
CHANGELOG.md
@@ -2,6 +2,10 @@
2
All notable changes to this project will be documented in this file.
3
This project adheres to [Semantic Versioning](http://semver.org/).
4
5
+## v1.1.2
6
+### Fixed
7
+ - Fixed issue when encoding some maps
8
+
9
## v1.1.1
10
### Fixed
11
- Corrected protobuf import
query_control.go
@@ -67,7 +67,7 @@ func Expr(val interface{}) Term {
67
switch valType.Kind() {
68
case reflect.Func:
69
return makeFunc(val)
70
- case reflect.Struct, reflect.Ptr:
+ case reflect.Struct, reflect.Map, reflect.Ptr:
71
data, err := encode(val)
72
73
if err != nil || data == nil {
0 commit comments