-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/fix behondhd #7323
Feature/fix behondhd #7323
Conversation
p0psicles
commented
Nov 8, 2019
•
edited
Loading
edited
- PR is based on the DEVELOP branch
- Don't send big changes all at once. Split up big PRs into multiple smaller PRs that are easier to manage and review
- Read the contribution guide
* skip <tr> with one td.
.format(provider_url=self.name, required_cookies=self.required_cookies) | ||
} | ||
if self.required_cookies: | ||
if self.name != 'Beyond-HD': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For now beyond-hd is the only one with a cookie name like: remember_web_59ba36addc2b2f9401580f01445acd8ea4e30af9d. So I had to make an exception for this provider.
@@ -111,14 +112,17 @@ def parse(self, data, mode): | |||
cells = result('td') | |||
|
|||
try: | |||
link = cells[1].find('div') | |||
if len(cells) < 2: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is an hidden tr at the end with one td.
This comment has been minimized.
This comment has been minimized.
* Modified the previous
Hey. I'm getting the error: [80b323e] Cookie is not correctly formatted: **********. I'm just copying and pasting the "remember_web_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" from BHD. Am I doing something wrong? Thanks! |
It's key=value. You probably only have the key. |