From 6c3d9b93cae4ba790c0e5f5411cf5e09e1575e1a Mon Sep 17 00:00:00 2001 From: maskers <97827489+mskrss@users.noreply.github.com> Date: Sat, 17 May 2025 21:07:52 +0300 Subject: [PATCH] remove some intel win10 false positives --- src/handlers/event/analyze_logs/issues.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/handlers/event/analyze_logs/issues.rs b/src/handlers/event/analyze_logs/issues.rs index e19c9ac..d54c45d 100644 --- a/src/handlers/event/analyze_logs/issues.rs +++ b/src/handlers/event/analyze_logs/issues.rs @@ -108,11 +108,12 @@ fn intel_hd(log: &str) -> Issue { let issue = ( "Intel HD Windows 10".to_string(), - "Your drivers don't support windows 10 officially + "Your drivers don't support Windows 10 officially See https://prismlauncher.org/wiki/getting-started/installing-java/#a-note-about-intel-hd-20003000-on-windows-10 for more info".to_string() ); - let found = log.contains("org.lwjgl.LWJGLException: Pixel format not accelerated"); + let found = log.contains("org.lwjgl.LWJGLException: Pixel format not accelerated") + && !log.contains("1.8.0_51"); found.then_some(issue) }