diff --git a/core/views.py b/core/views.py index a4f67fe3..73652b7e 100644 --- a/core/views.py +++ b/core/views.py @@ -84,7 +84,7 @@ def stream_view(request, stream_id): logger.debug(f'Profile has a max streams of {profile.max_streams}, checking if any are available') stream_index = 0 max_streams = profile.max_streams - if max_streams = 0: + if max_streams == 0: max_streams = 999999 # maybe a better way than just hardcoding a high number... while stream_index < max_streams: stream_index += 1