Fix: sidebar z-index

This commit is contained in:
VnPower
2023-06-14 09:55:15 +07:00
parent 306b42049f
commit 6cabe4e79b
3 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ func (p *PixivClient) Request(URL string) (*http.Response, error) {
}
if resp.StatusCode != 200 {
return resp, errors.New(fmt.Sprintf("Pixiv returned code: %d for request ", resp.StatusCode))
return resp, errors.New(fmt.Sprintf("Pixiv returned code: %d for request %s", resp.StatusCode, URL))
}
return resp, nil