Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

fix trusted status + locked status on upload

Cette révision appartient à :
akuma06 2017-07-28 23:54:18 +02:00
Parent 5f91ecf0b4
révision f62bd4f638

Voir le fichier

@ -6,6 +6,7 @@ import (
"strconv"
"github.com/NyaaPantsu/nyaa/controllers/router"
"github.com/NyaaPantsu/nyaa/models"
"github.com/NyaaPantsu/nyaa/models/torrents"
"github.com/NyaaPantsu/nyaa/templates"
"github.com/NyaaPantsu/nyaa/utils/captcha"
@ -51,6 +52,13 @@ func UploadPostHandler(c *gin.Context) {
messages.AddError("errors", err.Error())
}
uploadForm.Status = models.TorrentStatusNormal
if uploadForm.Remake { // overrides trusted
uploadForm.Status = models.TorrentStatusRemake
} else if user.IsTrusted() {
uploadForm.Status = models.TorrentStatusTrusted
}
err = torrents.ExistOrDelete(uploadForm.Infohash, user)
if err != nil {
messages.AddError("errors", err.Error())