Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Fix large torrent IDs giving a blank page

Cette révision appartient à :
ElegantMonkey 2017-05-09 21:22:23 -03:00
Parent f1f86e8d6d
révision 0b0abb1979

Voir le fichier

@ -45,7 +45,8 @@ func GetFeeds() []model.Feed {
func GetTorrentById(id string) (model.Torrents, error) {
var torrent model.Torrents
id_int, err := strconv.Atoi(id)
// Postgres DB integer size is 32-bit.
id_int, err := strconv.ParseInt(id, 10, 32)
if err != nil {
return torrent, err
}