Don't report a worker error if we can't load a model since we're already logging an error.

This commit is contained in:
Mike Oliphant
2023-07-04 16:28:57 -07:00
parent 207fb2281e
commit 0255f36ae4
+1 -1
View File
@@ -133,7 +133,7 @@ namespace NAM {
lv2_log_error(&nam->logger, "Unable to load model from: '%s'\n", msg->path); 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); respond(handle, sizeof(response), &response);