diff --git a/app/src/main/java/jp/juggler/subwaytooter/api/entity/TootStatus.java b/app/src/main/java/jp/juggler/subwaytooter/api/entity/TootStatus.java index c593527d..62fe8102 100644 --- a/app/src/main/java/jp/juggler/subwaytooter/api/entity/TootStatus.java +++ b/app/src/main/java/jp/juggler/subwaytooter/api/entity/TootStatus.java @@ -141,7 +141,7 @@ public class TootStatus extends TootId { status.decoded_mentions = HTMLDecoder.decodeMentions(account, status.mentions ); if( !TextUtils.isEmpty( status.spoiler_text ) ){ - status.decoded_spoiler_text = HTMLDecoder.decodeMentions(account, status.mentions ); + status.decoded_spoiler_text = HTMLDecoder.decodeHTML(account, status.spoiler_text ); } return status; }catch( Throwable ex ){