HenrikDK / xbmc-common-plugin-functions

Common Functions and ParseDOM module for XBMC plugins (Now on GitHub)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

getParameters cut values with =

Eviloid opened this issue · comments

request url: ....?param1=123=321
result getParameters: param1='123'
need: param1='123=321'

fix: line 117 replace to
splitCommand = command.split('=', 1)