Fix large torrent IDs giving a blank page
Cette révision appartient à :
Parent
f1f86e8d6d
révision
0b0abb1979
1 fichiers modifiés avec 2 ajouts et 1 suppressions
|
@ -45,7 +45,8 @@ func GetFeeds() []model.Feed {
|
||||||
|
|
||||||
func GetTorrentById(id string) (model.Torrents, error) {
|
func GetTorrentById(id string) (model.Torrents, error) {
|
||||||
var torrent model.Torrents
|
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 {
|
if err != nil {
|
||||||
return torrent, err
|
return torrent, err
|
||||||
}
|
}
|
||||||
|
|
Référencer dans un nouveau ticket