From a3c7d4247c7d76f7fd24318fbe43e15430ecc9d5 Mon Sep 17 00:00:00 2001 From: halfrost Date: Mon, 6 Dec 2021 11:26:37 -0800 Subject: [PATCH] fix ctl model type --- ctl/models/tagproblem.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctl/models/tagproblem.go b/ctl/models/tagproblem.go index b382edbb..13a4409e 100644 --- a/ctl/models/tagproblem.go +++ b/ctl/models/tagproblem.go @@ -32,7 +32,7 @@ type TopicTag struct { TranslatedName string `json:"translatedName"` Slug string `json:"slug"` Questions []Question `json:"questions"` - Frequencies float64 `json:"frequencies"` + Frequencies string `json:"frequencies"` Typename string `json:"__typename"` }