summaryrefslogtreecommitdiffstats
path: root/src/engine/QueuedEngineInterface.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-28 21:17:44 +0000
committerDavid Robillard <d@drobilla.net>2009-05-28 21:17:44 +0000
commitc37080eae184227a74e5c96237d6e7bf398fbf16 (patch)
treef878e03d1176e19810ad22a3ffb61c1c69bda56d /src/engine/QueuedEngineInterface.cpp
parent64a40ac2323cda14ecbce4e41618d6db32fd3573 (diff)
downloadingen-c37080eae184227a74e5c96237d6e7bf398fbf16.tar.gz
ingen-c37080eae184227a74e5c96237d6e7bf398fbf16.tar.bz2
ingen-c37080eae184227a74e5c96237d6e7bf398fbf16.zip
Fix LADSPA names in plugin selection dialog.
Fix request interface for non-graph objects (i.e. plugins). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2034 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/QueuedEngineInterface.cpp')
-rw-r--r--src/engine/QueuedEngineInterface.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/engine/QueuedEngineInterface.cpp b/src/engine/QueuedEngineInterface.cpp
index 1ac9a1f1..8dd31adc 100644
--- a/src/engine/QueuedEngineInterface.cpp
+++ b/src/engine/QueuedEngineInterface.cpp
@@ -279,8 +279,11 @@ QueuedEngineInterface::request_property(const URI& uri, const URI& key)
{
size_t hash = uri.find("#");
bool meta = (hash != string::npos);
- Path path = meta ? (string("/") + path.chop_start("/")) : uri.str();
- push_queued(new RequestMetadataEvent(_engine, _responder, now(), meta, path, key));
+ const string path_str = string("/") + uri.chop_start("/");
+ if (meta && Path::is_valid(path_str))
+ push_queued(new RequestMetadataEvent(_engine, _responder, now(), meta, path_str, key));
+ else
+ push_queued(new RequestMetadataEvent(_engine, _responder, now(), meta, uri, key));
}