Skip to content

Commit

Permalink
Fix history view elements (2) (#11655)
Browse files Browse the repository at this point in the history
  • Loading branch information
medariox committed Mar 17, 2024
1 parent 1b0a21c commit 9824610
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions medusa/server/api/v2/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ def get(self, series_slug, path_param):
compact_layout = bool(self.get_argument('compact', default=False))
return_last = bool(self.get_argument('last', default=False))
total_rows = self.get_argument('total', default=None)
sort = [json.loads(item) for item in self.get_arguments('sort')]
filter = json.loads(self.get_argument('filter')) if self.get_arguments('filter') else None
sort = json.loads(self.get_argument('sort', default='null'))
filter = json.loads(self.get_argument('filter', default='null'))

headers = {}

Expand Down

0 comments on commit 9824610

Please sign in to comment.