fixing emoji image path

This commit is contained in:
erinn 2020-10-29 14:43:54 -07:00
parent c530045798
commit 66f77f1733
1 changed files with 1 additions and 1 deletions

View File

@ -68,6 +68,6 @@ var standard = (function () {
function replacer_helper(match, p1, offset, string, size) {
//return "<font face=\"Adobe Blank\">:"+p1+":</font><img src=\"file://"+imagePath()+"/assets/mutstd/"+p1+".webp\" width=\""+size+"\" height=\""+size+"\" />"
return "<font face=\"Adobe Blank\">:"+p1+":</font><img src=\"assets:/mutstd/"+p1+".webp\" width=\""+size+"\" height=\""+size+"\" />"
return "<font face=\"Adobe Blank\">:"+p1+":</font><img src=\""+imagePath()+"mutstd/"+p1+".webp\" width=\""+size+"\" height=\""+size+"\" />"
}
}())