Commit ad551e0
committed
fix: correctly initialize AudioStream._processor
otherwise it will raise an exception when FrameProcessor isn't active
```
Traceback (most recent call last):
File "/app/venv/lib/python3.13/site-packages/livekit/rtc/audio_stream.py", line 276, in _run
if self._processor is not None and self._processor.enabled:
^^^^^^^^^^^^^^^
AttributeError: 'AudioStream' object has no attribute '_processor'
```1 parent 81b0eaa commit ad551e0
1 file changed
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
108 | | - | |
109 | | - | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
110 | 111 | | |
111 | 112 | | |
112 | 113 | | |
| |||
0 commit comments