mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-10-05 05:19:49 +02:00
Fix parsing Community/post title with "&" characters
This commit is contained in:
@@ -174,7 +174,7 @@ public class ParsePost {
|
||||
}
|
||||
}
|
||||
|
||||
String title = post.getString("name");
|
||||
String title = post.getString("name").replace("&", "&");
|
||||
String permalink = post.getString("ap_id");
|
||||
int score = counts.getInt("score");
|
||||
int upvotes = counts.getInt("upvotes");
|
||||
|
@@ -34,7 +34,7 @@ public class ParseSubredditData {
|
||||
return null;
|
||||
}
|
||||
|
||||
String title = community.getString(JSONUtils.TITLE_KEY);
|
||||
String title = community.getString(JSONUtils.TITLE_KEY).replace("&", "&");
|
||||
String bannerImageUrl = "";
|
||||
if (!community.isNull("banner")) {
|
||||
bannerImageUrl = community.getString("banner");
|
||||
|
Reference in New Issue
Block a user