Skip to content

Microsoft Web API 5.2.7 causes issue with GetTreeNode and FormDataCollection #123

Open
@bythewiseman

Description

This is an known issue at Umbraco HQ and was fixed. Please see:

umbraco/Umbraco-CMS#3796

And is easily fixed in the FluidityTreeController.cs file by changing:

public TreeNode GetTreeNode(string id, FormDataCollection queryStrings)

to

public TreeNode GetTreeNode(string id)

and add this line at the start of the method:

var queryStrings = new FormDataCollection(Request.RequestUri.Query.TrimStart('?'));

I have branched and fixed locally. Can I help by pushing this fix to you somehow?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions