FIX: Typo in emoji path caused by 83f332b (#12279)

This commit is contained in:
Rafael dos Santos Silva 2021-03-03 16:18:49 -03:00 committed by GitHub
parent 9cb72e1895
commit 42a440f5f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ export function emojiBasePath() {
let siteSettings = helperContext().siteSettings;
return siteSettings.external_emoji_url === ""
? "/images/emojis"
? "/images/emoji"
: siteSettings.external_emoji_url;
}