CWのspoiler_textの絵文字表示に対応

This commit is contained in:
tateisu 2017-04-24 04:37:45 +09:00
parent 746b6430c3
commit e312790992
1 changed files with 1 additions and 1 deletions

View File

@ -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 ){