Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
SiCKRAGE
sickrage
Commits
94e71c82
Commit
94e71c82
authored
Oct 17, 2017
by
echel0n
Browse files
Fixed issue
#88
- Show are truncated when show set in different language
parent
e6e02375
Changes
2
Hide whitespace changes
Inline
Side-by-side
changelog.md
View file @
94e71c82
# Changelog
-
*
7f4c026 - 2017-10-17: Added Anizb Newznab provider
-
*
a0fa354 - 2017-10-17: Fixed issue #88 - Show are truncated when show set in different language
-
*
e6e0237 - 2017-10-17: Added Anizb Newznab provider
-
*
f45988b - 2017-10-17: Refactored Newznab provider code Refactored locations of static files and mako templates
-
*
7aac26b - 2017-10-17: Refactored Newznab provider code Refactored locations of static files and mako templates
-
*
6384aab - 2017-10-17: Release v9.1.39
...
...
sickrage/indexers/thetvdb/api.py
View file @
94e71c82
...
...
@@ -529,10 +529,12 @@ class Tvdb:
# translate if required to provided language
if
not
self
.
config
[
'language'
]
==
self
.
config
[
'api'
][
'lang'
]:
intl_episode_info
=
self
.
_request
(
'get'
,
self
.
config
[
'api'
][
'episodes'
].
format
(
id
=
sid
),
params
=
{
'page'
:
p
})
for
i
,
x
in
enumerate
(
episode_info
):
x
.
update
((
k
,
v
)
for
k
,
v
in
self
.
_request
(
'get'
,
self
.
config
[
'api'
][
'episodes'
].
format
(
id
=
sid
),
)[
'data'
][
i
].
iteritems
()
if
v
)
x
.
update
((
k
,
v
)
for
k
,
v
in
intl_episode_info
[
'data'
][
i
].
iteritems
()
if
v
)
episode_info
[
i
]
=
x
episodes
+=
episode_info
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment