diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-10-24 19:56:13 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-10-24 19:56:13 +0000 |
| commit | 2fa8b6812f2e4c405c63cf59893363b825b6edd6 (patch) | |
| tree | 80f7032bf01efaf8c7a802738c4f624d8a2785c5 | |
| parent | 1a0c7c68feb8e49f7fe2c603fd0212869da162d6 (diff) | |
| download | qmmp-2fa8b6812f2e4c405c63cf59893363b825b6edd6.tar.gz qmmp-2fa8b6812f2e4c405c63cf59893363b825b6edd6.tar.bz2 qmmp-2fa8b6812f2e4c405c63cf59893363b825b6edd6.zip | |
fixed transport plugins loading
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@10374 90c681e8-e032-0410-971d-27865f9a5e38
| -rw-r--r-- | src/qmmp/inputsource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmmp/inputsource.cpp b/src/qmmp/inputsource.cpp index ead3e183a..11f57a9ee 100644 --- a/src/qmmp/inputsource.cpp +++ b/src/qmmp/inputsource.cpp @@ -161,7 +161,7 @@ QList<InputSourceFactory *> InputSource::enabledFactories() { if(m_disabledNames.contains(item->shortName())) continue; - if(item->decoderFactory()) + if(item->inputSourceFactory()) list.append(item->inputSourceFactory()); } return list; |
