summaryrefslogtreecommitdiff
path: root/system/addon/manager.go
diff options
context:
space:
mode:
Diffstat (limited to 'system/addon/manager.go')
-rw-r--r--system/addon/manager.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/addon/manager.go b/system/addon/manager.go
index 3ba67a5..3757421 100644
--- a/system/addon/manager.go
+++ b/system/addon/manager.go
@@ -41,7 +41,7 @@ func Manage(data url.Values, reverseDNS string) ([]byte, error) {
dec := schema.NewDecoder()
dec.IgnoreUnknownKeys(true)
dec.SetAliasTag("json")
- err := dec.Decode(&at, data)
+ err := dec.Decode(at, data)
if err != nil {
return nil, err
}