From 73c0263f35a73b68d20d299ee7fe8c37b9a6ffeb Mon Sep 17 00:00:00 2001 From: fiaxh Date: Fri, 13 Jan 2023 11:23:09 +0100 Subject: Add debug outputs to summarize_whitespaces_to_space and don't assert_not_reached related #1335 --- main/src/ui/util/helper.vala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'main/src/ui/util') diff --git a/main/src/ui/util/helper.vala b/main/src/ui/util/helper.vala index 58614bb8..ecf0ab25 100644 --- a/main/src/ui/util/helper.vala +++ b/main/src/ui/util/helper.vala @@ -419,7 +419,8 @@ public string summarize_whitespaces_to_space(string s) { try { return (/\s+/).replace_literal(s, -1, 0, " "); } catch (RegexError e) { - assert_not_reached(); + critical("RegexError when summarizing whitespaces in '%s': %s", s, e.message); + return s; } } -- cgit v1.2.3-54-g00ecf