We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
v5.16.1
1 parent 237a6b6 commit 6599f98Copy full SHA for 6599f98
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "gitify",
3
- "version": "5.16.0",
+ "version": "5.16.1",
4
"description": "GitHub notifications on your menu bar.",
5
"main": "build/main.js",
6
"scripts": {
src/renderer/utils/emojis.ts
@@ -29,6 +29,6 @@ export function convertTextToEmojiImgHtml(text: string): string {
29
}
30
31
function extractSvgFilename(imgHtml: string): string {
32
- const srcMatch = imgHtml.match(/src="(.*)"/);
+ const srcMatch = /src="(.*)"/.exec(imgHtml);
33
return path.basename(srcMatch[1]);
34
0 commit comments