Skip to content

Commit

Permalink
Merge 484cfc7 into c2526e6
Browse files Browse the repository at this point in the history
  • Loading branch information
Gooliver2 committed Jan 28, 2019
2 parents c2526e6 + 484cfc7 commit 4a8ae6e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -8,6 +8,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
Always reference the ticket number at the end of the issue description.


## pending

### Fixed

- BREAKING! Fixed response in DeletionMixin after `delete` method is called [#334][334]

[334]: //github.com/sanoma/django-arctic/issues/334


## 1.3.6 (2019-01-22)

### Fixed
Expand All @@ -30,7 +39,6 @@ Always reference the ticket number at the end of the issue description.

[324]: //github.com/sanoma/django-arctic/issues/324
[322]: //github.com/sanoma/django-arctic/issues/322
## pending:

## 1.3.5 (2018-12-21)

Expand Down
3 changes: 1 addition & 2 deletions arctic/generics.py
Expand Up @@ -873,8 +873,7 @@ def get(self, request, *args, **kwargs):

if can_delete and self.redirect:
messages.success(request, self.get_success_message(self.object))
self.delete(request, *args, **kwargs)
return redirect(self.get_success_url())
return self.delete(request, *args, **kwargs)

context = self.get_context_data(
object=self.object,
Expand Down

0 comments on commit 4a8ae6e

Please sign in to comment.