You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AttributeError: 'Channel' object has no attribute 'info'
CHANNEL: '|FR| ........' (http://..............ts)
Traceback (most recent call last):
File "/usr/lib/hypnotix/hypnotix.py", line 932, in before_play
data = f"{channel.info}:::{channel.url}"
Solution
I fixed the problem by deleting {channel.info}. data = f"{channel.info}:::{channel.url}"
becomes data = f"{channel.url}"
The text was updated successfully, but these errors were encountered:
That's right. It is a bug. The channel class does not have the info property. It is fixed in the Pull Request #276
If you know how to, feel free to download PR #276 to test it with your xtream account.
Hello,
Hypnotix 4.3 bug when launching a TV channel with Xtream API on Ubuntu 23.10.
Installed by http://packages.linuxmint.com/search.php?release=any§ion=any&keyword=hypnotix
Solution
I fixed the problem by deleting
{channel.info}
.data = f"{channel.info}:::{channel.url}"
becomes
data = f"{channel.url}"
The text was updated successfully, but these errors were encountered: