Skip to content

Commit

Permalink
Fix showing Quality Preferred in show-header when configured (#6455)
Browse files Browse the repository at this point in the history
* Fix showing Quality Preferred in show-header when configured

* Update changelog
  • Loading branch information
p0psicles authored and medariox committed Apr 1, 2019
1 parent 9e9fb07 commit 94881f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Fixed sending Kodi notifications (Python 3) ([#6355](https://github.com/pymedusa/Medusa/pull/6355))
- Fixed sending Slack notifications (Python 3) ([#6355](https://github.com/pymedusa/Medusa/pull/6355))
- Fixed possible error while getting AniDB scene exceptions (Python 3) ([#6355](https://github.com/pymedusa/Medusa/pull/6355))
- Fixed not displaying quality preferred in show-header when configured ([#6455](https://github.com/pymedusa/Medusa/pull/6455))

-----

Expand Down
2 changes: 1 addition & 1 deletion themes-default/slim/src/components/show-header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
</template>
</td></tr>

<tr v-if="!getPreset(combineQualities(show.config.qualities.allowed)).length > 0 && combineQualities(show.config.qualities.preferred).length > 0">
<tr v-if="!getPreset(combineQualities(show.config.qualities.allowed)).length > 0 && combineQualities(show.config.qualities.preferred) > 0">
<td class="showLegend">Quality preferred:</td><td>
<template v-for="(curQuality, $index) in show.config.qualities.preferred">
<template v-if="$index > 0">&comma;</template>
Expand Down
2 changes: 1 addition & 1 deletion themes/dark/assets/js/medusa-runtime.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/light/assets/js/medusa-runtime.js

Large diffs are not rendered by default.

0 comments on commit 94881f7

Please sign in to comment.