From 92a129f3464b0b973621c3f9ba813fa3a0da64c9 Mon Sep 17 00:00:00 2001 From: "zuk (Jakob Krueger)" Date: Sun, 3 May 2026 22:22:59 +0200 Subject: [PATCH] Fix double melody year in songinfo --- private_includes/base/footer_with_songinfo.ily | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private_includes/base/footer_with_songinfo.ily b/private_includes/base/footer_with_songinfo.ily index 2945ded..566f36e 100644 --- a/private_includes/base/footer_with_songinfo.ily +++ b/private_includes/base/footer_with_songinfo.ily @@ -143,7 +143,7 @@ (translation (chain-assoc-get 'header:translation props #f)) (pronunciation (chain-assoc-get 'header:pronunciation props #f)) (year_text (if (string? (car poet-and-composers)) #f (chain-assoc-get 'header:year_text props #f))) - (year_melody (if (string? (car poet-and-composers)) #f (chain-assoc-get 'header:year_melody props #f)))) + (year_melody (if (string? (cadr poet-and-composers)) #f (chain-assoc-get 'header:year_melody props #f)))) (markup #:override (cons 'songinfo:poet-maybe-with-composer (if (and poet-maybe-with-composer (not (and (string? poet-maybe-with-composer) (string-null? poet-maybe-with-composer)))) poet-maybe-with-composer #f))