From 0255f36ae49c64fd8c4c613e964ced1dce95d065 Mon Sep 17 00:00:00 2001 From: Mike Oliphant Date: Tue, 4 Jul 2023 16:28:57 -0700 Subject: [PATCH] Don't report a worker error if we can't load a model since we're already logging an error. --- src/nam_plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nam_plugin.cpp b/src/nam_plugin.cpp index 24d67b9..d69c906 100644 --- a/src/nam_plugin.cpp +++ b/src/nam_plugin.cpp @@ -132,8 +132,8 @@ namespace NAM { response.path[0] = '\0'; lv2_log_error(&nam->logger, "Unable to load model from: '%s'\n", msg->path); - - result = LV2_WORKER_ERR_UNKNOWN; + + //result = LV2_WORKER_ERR_UNKNOWN; } respond(handle, sizeof(response), &response);