For those who use iVue to connect to the servers through IPTV Stalker... This minor code change will prevent IPTV Stalker from sending an invalid serial number, which would cause on-going authentication issues with the server. If you already have these issues, you need to change your linked MAC, as it is already corrupted, and make sure that "Send Serial Number" is off.
Using a simple text editor, or Notepad++, make this change in the load_channels.py module in plugin.video.stalker in your addons folder
Just put a # sign in front of the setSerialNumber(Serial)
Using a simple text editor, or Notepad++, make this change in the load_channels.py module in plugin.video.stalker in your addons folder
Just put a # sign in front of the setSerialNumber(Serial)
Code:
def retriveUrl(portal_mac, url, serial, channel, tmp):
setMac(portal_mac);
[B]# setSerialNumber(serial);[/B]
if 'matrix' in channel:
return retrieve_matrixUrl(url, channel);
else:
return retrive_defaultUrl(url, channel, tmp);
Last edited: