Merge pull request #257 from WORD559/master

Fixed issue where pulseaudio module could monitor the wrong device if…
This commit is contained in:
tobi-wan-kenobi 2018-05-12 15:22:43 +02:00 committed by GitHub
commit 612df36e2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,7 @@ class Module(bumblebee.engine.Module):
found = False
for line in result.split("\n"):
if device in line:
if "<"+device+">" in line:
found = True
continue
if found == False: