Skip to content

Commit

Permalink
Fix broken url for titulky.com provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Marian Moravcik committed Aug 12, 2021
1 parent d23d36d commit 9b05a3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/subliminal_patch/providers/titulky.py
Expand Up @@ -152,12 +152,12 @@ class TitulkyProvider(Provider):
"""Titulky Provider."""
languages = {Language(l) for l in ['ces', 'slk']}

server_url = 'https://premium.titulky.com'
server_url = 'https://oldpremium.titulky.com'
sign_out_url = '?Logoff=true'
search_url_series = '?Fulltext={}'
search_url_movies = '?Searching=AdvancedResult&ARelease={}'
dn_url = 'https://premium.titulky.com'
download_url = 'https://premium.titulky.com/idown.php?titulky='
dn_url = 'https://oldpremium.titulky.com'
download_url = 'https://oldpremium.titulky.com/idown.php?titulky='

UserAgent = 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)'

Expand Down

1 comment on commit 9b05a3a

@havrancek
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have the latest 0.9.7 release, but I don't see titulky.com there in providers? How is that possible?

Please sign in to comment.