Open
Description
GitHub issue #23772 is currently 404.
If it's possible to do so in the scope of the work that maintner
already does (i.e., it doesn't require going out of its way), then it should detect that and set its NotExist
field gets to true.
c, err := godata.Get(context.Background())
if err != nil {
panic(err)
}
i := c.GitHub().Repo("golang", "go").Issue(23772)
fmt.Println(i.NotExist)
// Output: false (but should be true)
(This came up from #30182.)