Skip to content

Commit

Permalink
Fix incorrect lv2 metadata path
Browse files Browse the repository at this point in the history
  • Loading branch information
j-b-m authored and ddennedy committed Jul 9, 2024
1 parent 05dc153 commit 5fd7497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/jackrack/factory.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,13 +335,13 @@ static mlt_properties lv2_metadata(mlt_service_type type, const char *id, char *
if (type == mlt_service_filter_type) {
snprintf(file,
PATH_MAX,
"%s/lv2/%s",
"%s/jackrack/%s",
mlt_environment("MLT_DATA"),
strncmp(id, "lv2.", 4) ? data : "filter_lv2.yml");
} else {
snprintf(file,
PATH_MAX,
"%s/lv2/%s",
"%s/jackrack/%s",
mlt_environment("MLT_DATA"),
strncmp(id, "lv2.", 4) ? data : "producer_lv2.yml");
}
Expand Down

0 comments on commit 5fd7497

Please sign in to comment.