Merge pull request 'fixing emoji image path' (#20) from emofix into master

Reviewed-on: #20
This commit is contained in:
Sarah Jamie Lewis 2020-10-29 15:30:30 -07:00
commit 925796d468
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+"\" />"
}
}())