mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
fixed conditional check
This commit is contained in:
parent
d0df987a30
commit
324dfd1195
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue