(2021-08-31, 02:38)jbinkley60 Wrote: Ronie will likely need to look at this. He owns the settings conversion script.
Jeff
Ok so I found the problem, it was because in the settings.xml there were & chars instead of & ;
Now I don't have this problem with the settings format regarding this plugin,
but kodi still crashes when using this external url:
http://127.0.0.1:65007/?url=plugin://plu...=2&mode=11
(By the way I tried it also in this & format, but it still the same)
Updated kodi log:
https://paste.ubuntu.com/p/Xxd6H7dqzZ
There is an error there that I don't know why:
Code:
ERROR <general>: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
In Kodi 17.6, after this log line it starts playing:
Code:
ERROR: 127.0.0.1 - - [31/Aug/2021 15:57:40] "GET /?url=plugin://plugin.video.israelive/&channelid=2&mode=11 HTTP/1.1" 200 -
Another different that I found is:
In Kodi 17.6:
Code:
DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin GlobeTV('plugin://plugin.video.israelive/','20','?channelid=2&mode=11')
Code:
DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin עידן+ פלוס('plugin://plugin.video.idanplus/','21','?mode=5&url=ch_12')
(The external URL should calling to "plugin.video.israelive" which there is an item that should calling an item in "plugin.video.idanplus")
While in Kodi 19 in different format and params, and doesn't call the second addon (It calls twice to the same addon instead):
Code:
DEBUG <general>: XFILE::CPluginDirectory::StartScript - calling plugin GlobeTV('plugin://plugin.video.israelive/','1','?channelid=2&mode=11','resume:false')
Code:
DEBUG <general>: XFILE::CPluginDirectory::StartScript - calling plugin GlobeTV('plugin://plugin.video.israelive/channelid=2','2','?mode=11','resume:false')
Just to mention again: Everything is work when I enter to the addon manually, the issue is with the external URL.