diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-02 23:37:49 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-02 23:37:49 +0200 |
commit | d8f89726fec3822d7d1dd42c52f478f37003b534 (patch) | |
tree | 567e97ee605ef3a286e42e11535fa6516321e743 /bug/label.go | |
parent | ed8f7eca9a8e0d1c448a7cc6240e2b7e357cf354 (diff) | |
download | git-bug-d8f89726fec3822d7d1dd42c52f478f37003b534.tar.gz |
implement media hosting in git for comments + API for the webui
Diffstat (limited to 'bug/label.go')
-rw-r--r-- | bug/label.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/label.go b/bug/label.go index ccfa15f4..b19a980f 100644 --- a/bug/label.go +++ b/bug/label.go @@ -11,7 +11,7 @@ func (l Label) String() string { return string(l) } -// UnmarshalGQL implements the graphql.Marshaler interface +// UnmarshalGQL implements the graphql.Unmarshaler interface func (l *Label) UnmarshalGQL(v interface{}) error { _, ok := v.(string) if !ok { |