doh, fixes merge issue

This commit is contained in:
Shannon
2017-08-18 15:26:15 +10:00
parent 4cebec0d39
commit 9ce87ea4e8

View File

@@ -15,7 +15,7 @@ namespace Umbraco.Web.Trees
public LegacyTreeParams(IEnumerable<KeyValuePair<string, string>> formCollection)
{
if (formCollection == null)
if (formCollection != null)
{
var p = TreeRequestParams.FromDictionary(formCollection.ToDictionary(x => x.Key, x => x.Value));
NodeKey = p.NodeKey;