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
+2 -2
View File
@@ -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);