1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

Fixed soapysdr handling in Windows. Fixes #1243

This commit is contained in:
f4exb 2022-05-13 22:34:01 +02:00
parent 9e5c629473
commit 82084740f5

View File

@ -217,7 +217,7 @@ void PluginManager::loadPluginsDir(const QDir& dir)
{
if (QLibrary::isLibrary(fileName))
{
if (!m_enableSoapy && (fileName.contains("libinputsoapysdr") || (fileName.contains("liboutputsoapysdr"))))
if (!m_enableSoapy && fileName.contains("soapysdr"))
{
qInfo("PluginManager::loadPluginsDir: Soapy SDR disabled skipping %s", qPrintable(fileName));
continue;