I finally released my project to the production level and suddenly I have some issues I never had to deal with in the development phase.
When the users posts some ac
You may try this way. just use a function to get your object
def get_object(self, id): try: return Comment.objects.get(pk=id) except Comment.DoesNotExist: return False