mirror of
https://github.com/beetbox/beets.git
synced 2026-01-05 23:43:31 +01:00
fixed issue in pipeline when the first coro sends the BUBBLE message
This commit is contained in:
parent
7503c1174a
commit
e7782cc369
1 changed files with 2 additions and 2 deletions
|
|
@ -99,10 +99,10 @@ class FirstPipelineThread(PipelineThread):
|
|||
return
|
||||
|
||||
# Send it to the next stage.
|
||||
self.out_queue.put(msg)
|
||||
if msg is BUBBLE:
|
||||
continue
|
||||
|
||||
self.out_queue.put(msg)
|
||||
|
||||
# Generator finished; shut down the pipeline.
|
||||
self.out_queue.put(POISON)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue