diff options
author | ludovicm67 <ludovicmuller1@gmail.com> | 2019-08-28 21:13:45 +0200 |
---|---|---|
committer | ludovicm67 <ludovicmuller1@gmail.com> | 2019-10-15 20:42:27 +0200 |
commit | 75004e1298b530fa2a3231b9c9f25441a32b35d4 (patch) | |
tree | 6d8d13f582b85d6d524be857cce4d5a3224b61e0 /bridge | |
parent | d0d9ea56b9fcb8f2638269b1a6856ef14db7d694 (diff) | |
download | git-bug-75004e1298b530fa2a3231b9c9f25441a32b35d4.tar.gz |
bug: rename RGBA to Color
Diffstat (limited to 'bridge')
-rw-r--r-- | bridge/github/export.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |