Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

no need for potato fix anymore

Cette révision appartient à :
ayame-git 2017-05-10 21:50:27 +03:00
Parent 1bb8df3381
révision bd633193e5
2 fichiers modifiés avec 1 ajouts et 8 suppressions

Voir le fichier

@ -52,10 +52,6 @@ func IndexModPanel(w http.ResponseWriter, r *http.Request) {
comments, _ := commentService.GetAllComments(offset, 0, "", "")
torrentReports, _, _ := reportService.GetAllTorrentReports(offset, 0)
for i, report := range torrentReports { //shit fix pls fix model
torrentReports[i].Torrent, _ = torrentService.GetTorrentById(fmt.Sprint(report.TorrentID))
}
fmt.Println(torrentReports)
languages.SetTranslationFromRequest(panelIndex, r, "en-us")
htv := PanelIndexVbs{torrents, torrentReports, users, comments, NewSearchForm(), currentUser, r.URL}
@ -117,9 +113,6 @@ func TorrentReportListPanel(w http.ResponseWriter, r *http.Request) {
offset := 100
torrentReports, nbReports, _ := reportService.GetAllTorrentReports(offset, (pagenum-1)*offset)
for i, report := range torrentReports { //shit fix pls fix the model
torrentReports[i].Torrent, _ = torrentService.GetTorrentById(fmt.Sprint(report.TorrentID))
}
reportJSON := model.TorrentReportsToJSON(torrentReports)
languages.SetTranslationFromRequest(panelUserList, r, "en-us")

Voir le fichier

@ -63,7 +63,7 @@ func getTorrentReportsOrderBy(parameters *serviceBase.WhereParams, orderBy strin
if limit != 0 || offset != 0 { // if limits provided
dbQuery = dbQuery + " LIMIT " + strconv.Itoa(limit) + " OFFSET " + strconv.Itoa(offset)
}
err = db.ORM.Raw(dbQuery, params...).Find(&torrentReports).Error
err = db.ORM.Preload("Torrent").Preload("User").Raw(dbQuery, params...).Find(&torrentReports).Error //fixed !!!!
return
}