Skip to content

Commit

Permalink
bugfix(27445): set null on profiles adding new master from advance up…
Browse files Browse the repository at this point in the history
…load
  • Loading branch information
Yurujai committed Jan 10, 2025
1 parent 8a86188 commit f45da82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Pumukit/NewAdminBundle/Controller/TrackController.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public function createAction(Request $request, MultimediaObject $multimediaObjec
'mm' => $multimediaObject,
'series' => $multimediaObject->getSeries(),
'master_profiles' => $masterProfiles,
'show_profiles' => null !== $request->query->get('show_profiles') ? filter_var($request->query->get('show_profiles'), FILTER_VALIDATE_BOOLEAN) : true,
'profile' => $request->query->get('profile', null),
'show_profiles' => null,
'profile' => null,
]);
}

Expand Down

0 comments on commit f45da82

Please sign in to comment.