room feedback: use hasFeedback on conference instead of doing direkt lookup of conference config

This commit is contained in:
Lukas Schauer 2024-03-24 14:58:55 +01:00
parent 0e6c34fc90
commit 251b39501b
No known key found for this signature in database
GPG key ID: 9C4DBE6CF438F333

View file

@ -141,7 +141,7 @@ class Room
}
public function hasFeedback() {
return $this->get('FEEDBACK') && $this->getConference()->has('FEEDBACK');
return $this->get('FEEDBACK') && $this->getConference()->hasFeedback();
}