fix trusted status + locked status on upload
Cette révision appartient à :
Parent
5f91ecf0b4
révision
f62bd4f638
1 fichiers modifiés avec 8 ajouts et 0 suppressions
|
@ -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())
|
||||
|
|
Référencer dans un nouveau ticket