remove previous button and increase cache time

This commit is contained in:
orangix
2024-02-05 22:39:49 +01:00
parent 1cadb417b9
commit 61eb1c5a86
2 changed files with 1 additions and 5 deletions

View File

@@ -105,6 +105,6 @@ func (client *Client) FetchTag(tag string, sort string, page string) (Tag, error
Background: "/" + data.Get("background_id").String() + ".webp",
}
client.Cache.Set(tag+sort+page+"-tag", tagData, cache.DefaultExpiration)
client.Cache.Set(tag+sort+page+"-tag", tagData, 4*cache.DefaultExpiration)
return tagData, nil
}