Merge pull request #1288 from nemesbak:fix/stream-profile-override-ignored

fix(channels): honor per-channel stream profile override during streaming
This commit is contained in:
SergeantPanda 2026-05-29 17:08:40 -05:00 committed by GitHub
commit e45e4fc86f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -453,7 +453,7 @@ class Channel(models.Model):
# @TODO: honor stream's stream profile
def get_stream_profile(self):
stream_profile = self.stream_profile
stream_profile = self.effective_stream_profile_obj
if not stream_profile:
stream_profile = StreamProfile.objects.get(
id=CoreSettings.get_default_stream_profile_id()