Skip to content

Commit

Permalink
Merge pull request #3 from gitgiggety/fix-tags-depth
Browse files Browse the repository at this point in the history
Don't set depth for tags filter anynore
  • Loading branch information
gitgiggety authored Sep 19, 2021
2 parents 52ef6b8 + 86db773 commit d1102ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/navigation/tag_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def _create_items(self):
(count, tags) = self._client.find_tags(has_type='scenes' if self._type == 'scene_tags' else self._browse_for)
items = []
for tag in tags:
criterion = {self._filter_name: {'modifier': 'INCLUDES_ALL', 'value': [tag['id']], 'depth': 0}}
criterion = {self._filter_name: {'modifier': 'INCLUDES_ALL', 'value': [tag['id']]}}
item = self._create_item(tag['name'], image_path=tag['image_path'])
url = self._create_url(tag['name'], criterion)
items.append((item, url))
Expand Down

0 comments on commit d1102ed

Please sign in to comment.