Skip to content

Commit 9708869

Browse files
Fixed: Allow nonnummeric episodes for internal TV search.. Closes #607
1 parent c46b110 commit 9708869

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
### 0.2.219
55
Fixed: Use two concurrent connections when checking indexer capabilities. See [#606](https://github.com/theotherp/nzbhydra/issues/606).
66

7+
Fixed: Allow nonnummeric episodes for internal TV search.. See [#607](https://github.com/theotherp/nzbhydra/issues/607).
8+
79
### 0.2.218
810
Fixed: Previous versions were not compatible with Windows versions previous to 10... So much stuff to be careful about. See [#602](https://github.com/theotherp/nzbhydra/issues/602).
911

nzbhydra.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ a = Analysis(['nzbhydra.py'],
1313
('version.txt', '.'),
1414
('changelog.md', '.'),
1515
('LICENSE', '.')],
16-
hiddenimports=["rison", "socketserver", "multipart"],
16+
hiddenimports=["socketserver", "multipart"],
1717
hookspath=None,
1818

1919
runtime_hooks=None,

nzbhydra/web.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ def internalapi_moviesearch(args):
919919
"rid": fields.String(missing=None),
920920
"tvdbid": fields.String(missing=None),
921921
"season": fields.Integer(missing=None),
922-
"episode": fields.Integer(missing=None),
922+
"episode": fields.String(missing=None),
923923
"offset": fields.Integer(missing=0),
924924
"indexers": fields.String(missing=None),
925925
"loadAll": fields.Boolean(missing=False),

0 commit comments

Comments
 (0)