Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Fix for edit modpanel

Cette révision appartient à :
akuma06 2017-07-09 16:39:47 +02:00
Parent 2bf9b26dfd
révision ec318406c5

Voir le fichier

@ -28,7 +28,7 @@ func FindByID(id uint) (*models.Torrent, error) {
return found.(*models.Torrent), nil
}
torrent = &models.Torrent{}
tmp := models.ORM.Where("torrent_id = ?", id).Preload("Scrape").Preload("Comments")
tmp := models.ORM.Where("torrent_id = ?", id).Preload("Scrape").Preload("Uploader").Preload("Comments")
if id > config.Conf.Models.LastOldTorrentID {
tmp = tmp.Preload("FileList")
}