fix escaped apostrophes

This commit is contained in:
Henry Jameson 2021-06-07 12:22:15 +03:00
parent 20ce646852
commit 5970ddf9ac

View file

@ -1,9 +1,6 @@
import Vue from 'vue' import Vue from 'vue'
import { mapGetters } from 'vuex' import { unescape } from 'lodash'
import { processHtml } from 'src/services/tiny_post_html_processor/tiny_post_html_processor.service.js'
import { convertHtml, getTagName, processTextForEmoji, getAttrs } from 'src/services/mini_html_converter/mini_html_converter.service.js' import { convertHtml, getTagName, processTextForEmoji, getAttrs } from 'src/services/mini_html_converter/mini_html_converter.service.js'
import { mentionMatchesUrl, extractTagFromUrl } from 'src/services/matcher/matcher.service.js'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
import StillImage from 'src/components/still-image/still-image.vue' import StillImage from 'src/components/still-image/still-image.vue'
import './rich_content.scss' import './rich_content.scss'
@ -29,7 +26,7 @@ export default Vue.component('RichContent', {
if (typeof item === 'string') { if (typeof item === 'string') {
if (item.includes(':')) { if (item.includes(':')) {
return processTextForEmoji( return processTextForEmoji(
item, unescape(item),
this.emoji, this.emoji,
({ shortcode, url }) => { ({ shortcode, url }) => {
return <StillImage return <StillImage
@ -41,7 +38,7 @@ export default Vue.component('RichContent', {
} }
) )
} else { } else {
return item return unescape(item)
} }
} }
if (Array.isArray(item)) { if (Array.isArray(item)) {