graphics() improve vendor parsing (linux)
This commit is contained in:
parent
fc06a0e671
commit
a94259e9dd
@ -228,7 +228,12 @@ function graphics(callback) {
|
|||||||
let i = 1;
|
let i = 1;
|
||||||
lines.forEach((line) => {
|
lines.forEach((line) => {
|
||||||
let subsystem = '';
|
let subsystem = '';
|
||||||
if (i < lines.length && lines[i]) { subsystem = lines[i]; } // get next line;
|
if (i < lines.length && lines[i]) { // get next line;
|
||||||
|
subsystem = lines[i];
|
||||||
|
if (subsystem.indexOf(':') > 0) {
|
||||||
|
subsystem = subsystem.split(':')[1];
|
||||||
|
}
|
||||||
|
}
|
||||||
if ('' !== line.trim()) {
|
if ('' !== line.trim()) {
|
||||||
if (' ' !== line[0] && '\t' !== line[0]) { // first line of new entry
|
if (' ' !== line[0] && '\t' !== line[0]) { // first line of new entry
|
||||||
let isExternal = (pciIDs.indexOf(line.split(' ')[0]) >= 0);
|
let isExternal = (pciIDs.indexOf(line.split(' ')[0]) >= 0);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user