Merge pull request #1110 from bookwyrm-social/invalid-post-status-link

404 instead of error for invalid post link
This commit is contained in:
Mouse Reeve 2021-05-20 16:18:39 -07:00 committed by GitHub
commit a1f13d65ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ from .reading import edit_readthrough
class CreateStatus(View):
"""the view for *posting*"""
def get(self, request):
def get(self, request, status_type): # pylint: disable=unused-argument
"""compose view (used for delete-and-redraft"""
book = get_object_or_404(models.Edition, id=request.GET.get("book"))
data = {"book": book}