Skip to content

[BUG] Params URL not taken into account #459

@LazyDridri

Description

@LazyDridri

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions