From 6b62e037f2f828ec6bf9c7e0066db32cfb54abef Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 21 Dec 2012 18:48:12 +0000 Subject: Improved error handling in Python by loading error descriptions from data. Fix connecting and disconnecting with ingenish. Fix path problems. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4875 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/Node.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ingen/Node.hpp') diff --git a/ingen/Node.hpp b/ingen/Node.hpp index 9ec6abd1..275c82cc 100644 --- a/ingen/Node.hpp +++ b/ingen/Node.hpp @@ -75,7 +75,7 @@ public: static Raul::URI root_uri() { return Raul::URI("ingen:root"); } static bool uri_is_path(const Raul::URI& uri) { - return uri.substr(0, root_uri().length()) == root_uri(); + return uri.substr(0, root_uri().length() + 1) == root_uri() + "/"; } static Raul::Path uri_to_path(const Raul::URI& uri) { -- cgit v1.2.1