fix: detection code

Signed-off-by: Rahul <notlutitious@gmail.com>
This commit is contained in:
Rahul 2024-12-20 18:08:19 +00:00
parent 4605efd53c
commit 6127c73b8e

View file

@ -428,6 +428,6 @@ fn linux_openal(log: &str) -> Issue {
);
let found = log.contains("Failed to get OpenAL")
|| (log.contains("Problematic frame") && log.contains("libopenal.so"));
|| log.contains("libopenal.so");
found.then_some(issue)
}