summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Muehlhaeuser <muesli@gmail.com>2021-12-26 13:34:22 +0100
committerChristian Muehlhaeuser <muesli@gmail.com>2021-12-26 13:34:22 +0100
commit3f0782677ae46859aadcd3e7347c117702490916 (patch)
tree1344656dde71ac316ce0cc3af5324887acbec463
parent8d00387d8accd5c3de9afc99eeafbe9f16b4261d (diff)
Only display open Gitea issuesv0.5.0
-rw-r--r--vcs/gitea/gitea.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcs/gitea/gitea.go b/vcs/gitea/gitea.go
index c82baa0..b9b137e 100644
--- a/vcs/gitea/gitea.go
+++ b/vcs/gitea/gitea.go
@@ -59,6 +59,7 @@ func (c *Client) Issues(owner string, name string) ([]vcs.Issue, error) {
Page: page,
PageSize: 250,
},
+ State: gitea.StateOpen,
})
if err != nil {
return nil, err