Fix: discovery page now defaults to safe mode instead of all type mode

This commit is contained in:
VnPower 2023-06-06 12:48:02 +07:00
parent 5d42b3c66f
commit ef624d9e90
Signed by: vnpower
GPG key ID: 881DE3DEB966106C

View file

@ -154,7 +154,7 @@ func discovery_page(c *gin.Context) {
mode, ok := c.GetQuery("mode")
if !ok {
mode = "all"
mode = "safe"
}
artworks, _ := PC.GetDiscoveryArtwork(mode)