Merge pull request #257 from WORD559/master
Fixed issue where pulseaudio module could monitor the wrong device if…
This commit is contained in:
commit
612df36e2b
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ class Module(bumblebee.engine.Module):
|
||||||
found = False
|
found = False
|
||||||
|
|
||||||
for line in result.split("\n"):
|
for line in result.split("\n"):
|
||||||
if device in line:
|
if "<"+device+">" in line:
|
||||||
found = True
|
found = True
|
||||||
continue
|
continue
|
||||||
if found == False:
|
if found == False:
|
||||||
|
|
Loading…
Reference in a new issue