From 75004e1298b530fa2a3231b9c9f25441a32b35d4 Mon Sep 17 00:00:00 2001 From: ludovicm67 Date: Wed, 28 Aug 2019 21:13:45 +0200 Subject: bug: rename RGBA to Color --- bridge/github/export.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bridge/github') diff --git a/bridge/github/export.go b/bridge/github/export.go index b239eff9..a79256fc 100644 --- a/bridge/github/export.go +++ b/bridge/github/export.go @@ -576,7 +576,7 @@ func (ge *githubExporter) getOrCreateGithubLabelID(ctx context.Context, gc *gith } // RGBA to hex color - rgba := label.RGBA() + rgba := label.Color().RGBA() hexColor := fmt.Sprintf("%.2x%.2x%.2x", rgba.R, rgba.G, rgba.B) ctx, cancel := context.WithTimeout(ctx, defaultTimeout) -- cgit