mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 11:46:40 +00:00
[bugfix] Check the length of form.MediaIDs instead of just checking for null (#766)
This commit is contained in:
parent
79fb8bad04
commit
e9b5ba0502
|
@ -105,11 +105,15 @@ func (m *Module) StatusCreatePOSTHandler(c *gin.Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func validateCreateStatus(form *model.AdvancedStatusCreateForm) error {
|
func validateCreateStatus(form *model.AdvancedStatusCreateForm) error {
|
||||||
if form.Status == "" && form.MediaIDs == nil && form.Poll == nil {
|
hasStatus := form.Status != ""
|
||||||
|
hasMedia := len(form.MediaIDs) != 0
|
||||||
|
hasPoll := form.Poll != nil
|
||||||
|
|
||||||
|
if !hasStatus && !hasMedia && !hasPoll {
|
||||||
return errors.New("no status, media, or poll provided")
|
return errors.New("no status, media, or poll provided")
|
||||||
}
|
}
|
||||||
|
|
||||||
if form.MediaIDs != nil && form.Poll != nil {
|
if hasMedia && hasPoll {
|
||||||
return errors.New("can't post media + poll in same status")
|
return errors.New("can't post media + poll in same status")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue