From 8ec317b07d6b4f1da7533b4ed4698eea2665e5a9 Mon Sep 17 00:00:00 2001 From: Blue Fox Date: Mon, 22 Aug 2022 08:15:44 +0200 Subject: [PATCH] Fixed special chars not replaced in bible sources --- display.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/display.ino b/display.ino index b16295d..60d3cd3 100755 --- a/display.ino +++ b/display.ino @@ -59,6 +59,8 @@ void showDailyText(String losung, String lehrtext, String losungPosition, String // clean the strings for losung = replaceSpecialChars(losung); lehrtext = replaceSpecialChars(lehrtext); + losungPosition = replaceSpecialChars(losungPosition); + lehrtextPosition = replaceSpecialChars(lehrtextPosition); // position vars int text_x = 0;