Skip to content

[BUG] Functions URL is not taking arguments into account #422

@LazyDridri

Description

@LazyDridri

Description
Calling cloud functions is not taking parameters passed through params Dictionary

Location (functions/functions.gd : execute() methods
`
var url : String = _base_url + ("/" if not _base_url.ends_with("/") else "") + function
function_task._url = url

if not params.empty():
	url += "?"
	for key in params.keys():
		url += key + "=" + params[key] + "&"

`

Solution
Replace "url" by "function_task._url" when applying parameters

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions