diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/PluginModel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/PluginModel.cpp b/src/client/PluginModel.cpp index 3a1f3a9a..93a48acf 100644 --- a/src/client/PluginModel.cpp +++ b/src/client/PluginModel.cpp @@ -50,9 +50,9 @@ PluginModel::PluginModel(URIs& uris, { if (!_type.is_valid()) { if (uri.find("ingen-internals") != string::npos) { - _type = uris.ingen_Internal; + _type = uris.ingen_Internal.urid; } else { - _type = uris.lv2_Plugin; // Assume LV2 and hope for the best... + _type = uris.lv2_Plugin.urid; // Assume LV2 and hope for the best... } } |