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
Oh, it's fairly easy! You just fork the repository, make your changes, then on the site you can open the PR back against the this repo. I'll accept fairly quickly.
In functions.gd, parameters are not taken into account :
This :
function_task._url = url
if not params.is_empty():
url += "?"
for key in params.keys():
url += key + "=" + params[key] + "&"
Should be :
if not params.is_empty():
url += "?"
for key in params.keys():
url += key + "=" + params[key] + "&"
function_task._url = url
The text was updated successfully, but these errors were encountered: