fix: error on censures
parent
75f99cba95
commit
92ecc8297b
|
@ -210,7 +210,7 @@ class Censures(Resource):
|
|||
raise e.BadRequest("You can't censure an instance you've endorsed! Please withdraw the endorsement first.")
|
||||
if database.get_censure(target_instance.id,instance.id):
|
||||
return {"message":'OK'}, 200
|
||||
if database.count_all_censured_instances_by_censuring_id(instance.id) >= instance.max_list_size:
|
||||
if database.count_all_censured_instances_by_censuring_id([instance.id]) >= instance.max_list_size:
|
||||
raise e.Forbidden("You're reached the maximum amount of instances you can add to your censures. Please contact the admins of fediseer to increase this limit is needed.")
|
||||
reason = self.args.reason
|
||||
if reason is not None:
|
||||
|
|
|
@ -190,6 +190,8 @@ class Endorsements(Resource):
|
|||
raise e.BadRequest("You can't endorse an instance you've censured! Please withdraw the censure first.")
|
||||
if database.get_endorsement(target_instance.id,instance.id):
|
||||
return {"message":'OK'}, 200
|
||||
if database.count_all_endorsed_instances_by_approving_id([instance.id]) >= instance.max_list_size:
|
||||
raise e.Forbidden("You're reached the maximum amount of instances you can add to your endorsements. Please contact the admins of fediseer to increase this limit is needed.")
|
||||
reason = self.args.reason
|
||||
if reason is not None:
|
||||
reason = sanitize_string(reason)
|
||||
|
|
|
@ -198,7 +198,8 @@ class Hesitations(Resource):
|
|||
raise e.BadRequest("You can't hesitate against an instance you've endorsed! Please withdraw the endorsement first.")
|
||||
if database.get_hesitation(target_instance.id,instance.id):
|
||||
return {"message":'OK'}, 200
|
||||
|
||||
if database.count_all_dubious_instances_by_hesitant_id([instance.id]) >= instance.max_list_size:
|
||||
raise e.Forbidden("You're reached the maximum amount of instances you can add to your hesitations. Please contact the admins of fediseer to increase this limit is needed.")
|
||||
reason = self.args.reason
|
||||
if reason is not None:
|
||||
reason = sanitize_string(reason)
|
||||
|
|
Loading…
Reference in New Issue