fixing emoji image path #20

Merged
sarah merged 1 commits from emofix into master 2020-10-29 22:30:31 +00:00
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+"\" />"
}
}())