fix paste regexes
This commit is contained in:
parent
b95975ba03
commit
1e00de4c95
3 changed files with 6 additions and 3 deletions
|
@ -48,7 +48,10 @@ const versionAnalyzer: Analyzer = async (text) => {
|
|||
|
||||
const flatpakNvidiaAnalyzer: Analyzer = async (text) => {
|
||||
if (
|
||||
text.includes('org.lwjgl.LWJGLException: Could not choose GLX13 config')
|
||||
text.includes('org.lwjgl.LWJGLException: Could not choose GLX13 config') ||
|
||||
text.includes(
|
||||
'GLFW error 65545: GLX: Failed to find a suitable GLXFBConfig'
|
||||
)
|
||||
) {
|
||||
return [
|
||||
'Outdated Nvidia Flatpak Driver',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue