Skip to content

Commit

Permalink
Merge pull request #19 from TehTux/fix/fix-icon-identifier
Browse files Browse the repository at this point in the history
[BUGFIX] Fix poster/fanart identifiers
  • Loading branch information
hubsif authored Sep 18, 2018
2 parents 49d606b + f35309a commit 81168a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions default.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ def addMainDirectoryItem(content, title):
icon = "bla"
if 'BBL' in content['title']:
icon = 'bbl'
elif 'Euroleague' in content['title']:
elif 'EuroLeague' in content['title']:
icon = 'euroleague'
elif 'EuroBasket' in content['title']:
icon = 'eurobasket'
elif 'DEL' in content['title']:
elif 'Deutsche Eishockey Liga' in content['title']:
icon = 'del'
elif '3. Liga' in content['title']:
icon = '3.liga'
Expand Down

0 comments on commit 81168a1

Please sign in to comment.