aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/jalv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jalv.c b/src/jalv.c
index 9fd7288..7ee1073 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -173,6 +173,9 @@ const LV2_Feature* features[13] = {
static bool
feature_is_supported(const char* uri)
{
+ if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive")) {
+ return true;
+ }
for (const LV2_Feature*const* f = features; *f; ++f) {
if (!strcmp(uri, (*f)->URI)) {
return true;