diff --git a/src/applications/conpherence/controller/ConpherenceUpdateController.php b/src/applications/conpherence/controller/ConpherenceUpdateController.php --- a/src/applications/conpherence/controller/ConpherenceUpdateController.php +++ b/src/applications/conpherence/controller/ConpherenceUpdateController.php @@ -120,8 +120,10 @@ if (!$participant) { return id(new Aphront404Response()); } - $participant->setSettings(array('notifications' => $notifications)); - $participant->setSettings(array('sounds' => $sounds)); + $participant->setSettings(array( + 'notifications' => $notifications, + 'sounds' => $sounds, + )); $participant->save(); return id(new AphrontRedirectResponse()) ->setURI('/'.$conpherence->getMonogram());