From a9c23fb4aaf6e11eb3c555aff49bb596ae3c7583 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Sun, 26 Apr 2015 09:02:40 +0200 Subject: [PATCH] Fix silly bug with non-encodable value being encoded. --- deb/uploaders.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deb/uploaders.go b/deb/uploaders.go index 014a7c29..17193c10 100644 --- a/deb/uploaders.go +++ b/deb/uploaders.go @@ -13,7 +13,7 @@ type UploadersRule struct { Condition string `json:"condition"` Allow []string `json:"allow"` Deny []string `json:"deny"` - CompiledCondition PackageQuery `json:"-"` + CompiledCondition PackageQuery `json:"-" codec:"-"` } func (u UploadersRule) String() string {