[YouTube] Fix escaping links in YouTubeParsingHelper.getTextFromObject

This commit is contained in:
TobiGr 2023-01-05 00:28:12 +01:00
parent 45636b0d00
commit 56aab4d971
1 changed files with 2 additions and 1 deletions

View File

@ -937,6 +937,7 @@ public final class YoutubeParsingHelper {
String text = run.getString("text");
if (html) {
text = Entities.escape(text);
if (run.has("navigationEndpoint")) {
final String url = getUrlFromNavigationEndpoint(run
.getObject("navigationEndpoint"));
@ -962,7 +963,7 @@ public final class YoutubeParsingHelper {
textBuilder.append("<s>");
}
textBuilder.append(Entities.escape(text));
textBuilder.append(text);
if (strikethrough) {
textBuilder.append("</s>");