This commit is contained in:
orangix 2024-02-07 02:07:37 +01:00
parent 337796b9be
commit fd4c68af18
No known key found for this signature in database
GPG Key ID: C31D4A86601C8416

View File

@ -24,7 +24,8 @@ func nextInTag(client *api.Client, tagname, sort, page, I string) string {
if i >= len(tag.Posts)-1 {
pageNumber, _ := strconv.Atoi(page)
tagn, err := client.FetchTag(tagname, sort, strconv.Itoa(pageNumber+1))
if err != nil {
// Check length - Imgur will not return an error if there are no more posts and you request the next page
if err != nil || len(tagn.Posts) < 1 {
return ""
}
return tagn.Posts[0].Link