Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Update search.go

Cette révision appartient à :
kilo 2017-10-29 04:12:38 +01:00 révisé par GitHub
Parent 67ab9dfa8c
révision 8f285c8414
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: 4AEE18F83AFDEB23

Voir le fichier

@ -73,6 +73,11 @@ func ByQuery(c *gin.Context, pagenum int, withUser bool, deleted bool, hidden bo
torrentParam.Hidden = hidden
torrentParam.Full = withUser
torrentParam.Deleted = deleted
if torrentParam.Abort {
return torrentParam, []models.Torrent{}, 0, nil
}
if found, ok := cache.C.Get(torrentParam.Identifier()); ok {
log.Infof("Retrieve results from Cache in %s", torrentParam.Identifier())
torrentCache := found.(*TorrentCache)