From 83d2614a7570f07f110b4808425aadd5156d83b8 Mon Sep 17 00:00:00 2001 From: maskers <97827489+mskrss@users.noreply.github.com> Date: Mon, 19 May 2025 15:49:39 +0300 Subject: [PATCH] apply feedback --- src/handlers/event/analyze_logs/issues.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/handlers/event/analyze_logs/issues.rs b/src/handlers/event/analyze_logs/issues.rs index d583748..9cbf598 100644 --- a/src/handlers/event/analyze_logs/issues.rs +++ b/src/handlers/event/analyze_logs/issues.rs @@ -428,14 +428,14 @@ fn nvidia_linux(log: &str) -> Issue { .to_string(), ); - let found = log.contains("[libnvidia-glcore.so"); + let found = log.contains("# C [libnvidia-glcore.so"); found.then_some(issue) } fn linux_openal(log: &str) -> Issue { let issue = ( "Missing .alsoftrc".to_string(), - "OpenAL is missing the configuration file. + "OpenAL is likely missing the configuration file. To fix this, create a file named `.alsoftrc` in your home directory with the following content: ``` drivers=alsa @@ -443,7 +443,7 @@ hrtf=true```" .to_string(), ); - let found = log.contains("[libopenal.so"); + let found = log.contains("# C [libopenal.so"); found.then_some(issue) }