Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Fix uploader id search missing space

Cette révision appartient à :
tomleb 2017-05-27 09:07:10 -04:00
Parent f338cab4fe
révision aeb1b5e69e

Voir le fichier

@ -103,7 +103,7 @@ func (p *TorrentParam) ToFilterQuery() string {
}
if p.UserID != 0 {
query += "uploader_id:" + strconv.FormatInt(int64(p.UserID), 10)
query += " uploader_id:" + strconv.FormatInt(int64(p.UserID), 10)
}
if p.Status != ShowAll {