[YouTube] Fix regex warning: use ' {2}' instead of ' '

pull/822/head
Stypox 2022-03-18 17:21:10 +01:00
rodzic 24e83997b4
commit adbbdc7a5b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4BDF1B40A49FDD23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -812,7 +812,7 @@ public final class YoutubeParsingHelper {
if (html) {
text = text.replaceAll("\\n", "<br>");
text = text.replaceAll(" ", " &nbsp;");
text = text.replaceAll(" {2}", " &nbsp;");
}
return text;