Compare commits

...

2 Commits

View File

@ -237,7 +237,7 @@ class LogoForm(FlaskForm):
if self.do_delete.data and self.can_delete:
return LogoDelete.build_action(self.data)
if self.upload.data and self.validate():
if self.upload.data:
return LogoUpdate.build_action(self.data)
if self.do_rename.data and self.validate():
return LogoRename.build_action(self.data)