[bugfix] Check the length of form.MediaIDs instead of just checking for null (#766)

This commit is contained in:
Blackle Morisanchetto 2022-08-26 11:37:51 -04:00 committed by GitHub
parent 79fb8bad04
commit e9b5ba0502
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,11 +105,15 @@ func (m *Module) StatusCreatePOSTHandler(c *gin.Context) {
}
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")
}
if form.MediaIDs != nil && form.Poll != nil {
if hasMedia && hasPoll {
return errors.New("can't post media + poll in same status")
}