Skip to content

Commit

Permalink
Fix channel manager not using right type (#2428)
Browse files Browse the repository at this point in the history
  • Loading branch information
MinnDevelopment committed Mar 23, 2023
1 parent 912d0cc commit 42a040d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -651,7 +651,7 @@ protected RequestBody finalizeData()
if (shouldUpdate(NAME))
frame.put("name", name);
if (shouldUpdate(TYPE))
frame.put("type", type);
frame.put("type", type.getId());
if (shouldUpdate(POSITION))
frame.put("position", position);
if (shouldUpdate(TOPIC))
Expand Down

0 comments on commit 42a040d

Please sign in to comment.