diff --git a/cmd/stcrashreceiver/sourcecodeloader.go b/cmd/stcrashreceiver/sourcecodeloader.go index ee3e91ffb..1da310d3c 100644 --- a/cmd/stcrashreceiver/sourcecodeloader.go +++ b/cmd/stcrashreceiver/sourcecodeloader.go @@ -72,8 +72,12 @@ func (l *githubSourceCodeLoader) Load(filename string, line, context int) ([][]b url := urlPrefix + l.version + filename[idx:] resp, err := l.client.Get(url) - if err != nil || resp.StatusCode != http.StatusOK { - fmt.Println("Loading source:", err.Error()) + if err != nil { + fmt.Println("Loading source:", err) + return nil, 0 + } + if resp.StatusCode != http.StatusOK { + fmt.Println("Loading source:", resp.Status) return nil, 0 } data, err := ioutil.ReadAll(resp.Body)