diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-08-19 14:09:31 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-08-19 23:56:50 +0200 |
commit | 514dc30c20c8a9a068c68f4d9d4935abc56dbda7 (patch) | |
tree | ad387b697b676c40ba27951369e029fe94123705 /bridge/core | |
parent | f1be129d75c56a168a1519674f7c3ccd429af01b (diff) | |
download | git-bug-514dc30c20c8a9a068c68f4d9d4935abc56dbda7.tar.gz |
bridge/gitlab: fix edit comment request and remove label functionalities
Diffstat (limited to 'bridge/core')
-rw-r--r-- | bridge/core/export.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bridge/core/export.go b/bridge/core/export.go index ceae1401..558b3d78 100644 --- a/bridge/core/export.go +++ b/bridge/core/export.go @@ -62,8 +62,9 @@ func (er ExportResult) String() string { func NewExportError(err error, id entity.Id) ExportResult { return ExportResult{ - ID: id, - Err: err, + ID: id, + Err: err, + Event: ExportEventError, } } |