From 3d9dd08c16cff60e80d784934dba0b3258ed8cb7 Mon Sep 17 00:00:00 2001 From: "D.R.racer" Date: Mon, 2 Jan 2023 12:30:52 +0100 Subject: [PATCH] Change MMU error links to a new url PFW-1473 --- Firmware/mmu2_reporting.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Firmware/mmu2_reporting.cpp b/Firmware/mmu2_reporting.cpp index 7f2505611..cd04da7bb 100644 --- a/Firmware/mmu2_reporting.cpp +++ b/Firmware/mmu2_reporting.cpp @@ -51,7 +51,7 @@ static void ReportErrorHookStaticRender(uint8_t ei) { //! When an MMU error occurs, the LCD content will look like this: //! |01234567890123456789| //! |MMU FW update needed| <- title/header of the error: max 20 characters - //! |prusa3d.com/ERR04504| <- URL 20 characters + //! |prusa.io/04504 | <- URL max 20 characters //! |FI:1 FS:1 5>3 t201°| <- status line, t is thermometer symbol //! |>Retry >Done >W| <- buttons bool two_choices = false; @@ -72,7 +72,7 @@ static void ReportErrorHookStaticRender(uint8_t ei) { lcd_clear(); // Print title and header - lcd_printf_P(PSTR("%.20S\nprusa3d.com/ERR04%hu"), _T(PrusaErrorTitle(ei)), PrusaErrorCode(ei) ); + lcd_printf_P(PSTR("%.20S\nprusa.io/04%hu"), _T(PrusaErrorTitle(ei)), PrusaErrorCode(ei) ); ReportErrorHookSensorLineRender();