Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Merge pull request #243 from ElegantMonkey/fix-large-numbers

Workaround large torrent IDs on viewTorrentHandler giving blank pages
Cette révision appartient à :
akuma06 2017-05-10 19:01:15 +02:00 révisé par GitHub
révision de7474baef

Voir le fichier

@ -51,7 +51,8 @@ func GetFeeds() (result []model.Feed, err error) {
}
func GetTorrentById(id string) (torrent model.Torrent, err error) {
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
}