mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
Fixed bug: RuntimeError: dictionary changed size during iteration
This commit is contained in:
parent
ad068e63bd
commit
71f7357d0b
1 changed files with 1 additions and 1 deletions
|
|
@ -823,7 +823,7 @@ class ProxyServer:
|
|||
return
|
||||
|
||||
# Refresh registry entries for channels we own
|
||||
for channel_id in self.stream_managers.keys():
|
||||
for channel_id in list(self.stream_buffers.keys()):
|
||||
# Use standard key pattern
|
||||
metadata_key = f"ts_proxy:channel:{channel_id}:metadata"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue