Skip to content

Commit

Permalink
Encode Postman collection items correctly (fixes #278)
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah committed Jul 17, 2021
1 parent 518be53 commit 87b99bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion camel/Camel.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,6 @@ public static function prepareGroupedEndpointsForOutput(array $groupedEndpoints)
}, $group['endpoints']),
];
}, $groupedEndpoints);
return Arr::sort($groups, 'fileName');
return array_values(Arr::sort($groups, 'fileName'));
}
}

0 comments on commit 87b99bc

Please sign in to comment.