Skip to content

Commit

Permalink
Fix manual search page release name bug - Fixes #7516 (#7517)
Browse files Browse the repository at this point in the history
* Fix manual search page release name bug

* Fix tests

Pin `vcrpy` to `<4.0.0` for Python 2
  • Loading branch information
sharkykh authored and p0psicles committed Dec 20, 2019
1 parent 0783cf5 commit 68f8328
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
- Fix `torrents.verifyCert` config patch ignored warning ([#7501](https://github.com/pymedusa/Medusa/pull/7501))
- Fix dragging and saving Anime / Series list handles in Home - Poster layout ([#7502](https://github.com/pymedusa/Medusa/pull/7502))
- Fix adding Anime with white/black listed release groups ([#7507](https://github.com/pymedusa/Medusa/pull/7507))
- Fix Schedule page and Forced Search on Schedule page ([#7512](https://github.com/pymedusa/Medusa/pull/#7512))
- Fix Schedule page and Forced Search on Schedule page ([#7512](https://github.com/pymedusa/Medusa/pull/7512))
- Fix manual search page release name bug ([#7517](https://github.com/pymedusa/Medusa/pull/7517))

-----

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ def packages():
'pytest-flake8>=1.0.2',
'pytest-tornado5>=2.0.0',
'PyYAML>=5.1',
'vcrpy>=2.0.1',
'vcrpy<4.0.0 ; python_version < "3.5"',
'vcrpy>=4.0.0 ; python_version >= "3.5"',
'mock>=2.0.0',
],
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion themes-default/slim/views/snatchSelection.mako
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
% for hItem in provider_results['found_items']:
<tr id="${hItem['name'] | h}" class="skipped season-${season} seasonstyle ${hItem['status_highlight']}" role="row">
<td class="release-name-ellipses triggerhighlight">
<span data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
<span v-pre data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
</td>
<td class="col-group break-word triggerhighlight">
<span class="break-word ${hItem['rg_highlight']}">${hItem['release_group']}</span>
Expand Down
2 changes: 1 addition & 1 deletion themes/dark/templates/snatchSelection.mako

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion themes/light/templates/snatchSelection.mako

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 68f8328

Please sign in to comment.