forked from mirrors/bookwyrm
Merge pull request #1110 from bookwyrm-social/invalid-post-status-link
404 instead of error for invalid post link
This commit is contained in:
commit
a1f13d65ed
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue