From f80aa5675beac0ed15e41c43de304c624aff3c27 Mon Sep 17 00:00:00 2001 From: Erik Huelsmann Date: Sat, 18 Jan 2025 16:45:19 +0100 Subject: [PATCH] Fix schema checks feedback which currently fails to call 'upgrade_run_id' on the literal string naming the database being upgraded. --- lib/LedgerSMB/Setup/SchemaChecks.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/LedgerSMB/Setup/SchemaChecks.pm b/lib/LedgerSMB/Setup/SchemaChecks.pm index bdfc0afe57..3778ca28b6 100644 --- a/lib/LedgerSMB/Setup/SchemaChecks.pm +++ b/lib/LedgerSMB/Setup/SchemaChecks.pm @@ -71,7 +71,7 @@ sub _wrap_html { action_url => $request->{_uri}->as_string, # note: the line below works because the upgrade # has completed when this wrapper is being run - run_id => $request->{database}->upgrade_run_id, + run_id => $request->{run_id}, }); $template = $request->{_wire}->get('ui');