From 577570aa55b2ca0eba7759d13624b179275d65b8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 12 Aug 2015 15:21:10 +0000 Subject: Fix URI comparison issues. Fixes issue #1074. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5704 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/PluginModel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client') 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... } } -- cgit v1.2.1