1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-05 08:07:33 +02:00

[NvidiaDriverBridge] fix typo (#4224)

This commit is contained in:
tillcash
2024-08-20 21:02:15 +05:30
committed by GitHub
parent 320afc3f32
commit 2d5d2f5017

View File

@@ -66,13 +66,13 @@ class NvidiaDriverBridge extends FeedExpander
$this->operatingSystem = 'Windows';
break;
case 'Linux':
$whql = $this->getInput('lwwhql');
$whql = $this->getInput('lwhql');
$parameters['osid'] = 12;
$parameters['whql'] = $whql;
$this->operatingSystem = 'Linux';
break;
case 'FreeBSD':
$whql = $this->getInput('fwwhql');
$whql = $this->getInput('fwhql');
$parameters['osid'] = 22;
$parameters['whql'] = $whql;
$this->operatingSystem = 'FreeBSD';