We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5d4a8c commit b531b94Copy full SHA for b531b94
src/platform/desktop_notifications/desktopnotify.cpp
@@ -48,7 +48,7 @@ QString DesktopNotify::sanitize_text_for_notifications(const QString& input_text
48
{
49
QString output_text = QString(input_text);
50
output_text.replace(QRegularExpression("[^a-zA-Z0-9 _:]"), "_"); // allow only a A-Z and 0-9 and "_" and " " and ":" chars
51
- qDebug() << "sanitize_text_for_notifications: input:" << input_text << "output:" << output_text;
+ // qDebug() << "sanitize_text_for_notifications: input:" << input_text << "output:" << output_text;
52
return output_text;
53
}
54
0 commit comments