We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424c11f commit e469bd8Copy full SHA for e469bd8
BouyomiPlugin/main.cs
@@ -40,6 +40,14 @@ public static string ToTextWithImageAlt(this IEnumerable<IMessagePart> parts)
40
{
41
s += image.Alt;
42
}
43
+ else if(part is IMessageRemoteSvg remoteSvg)
44
+ {
45
+ s += remoteSvg.Alt;
46
+ }
47
+ else
48
49
+
50
51
52
53
return s;
YouTubeLiveSitePlugin/Message.cs
@@ -163,7 +163,7 @@ public static IMessagePart Parse(ryu_s.YouTubeLive.Message.IMessagePart a)
163
return new Common.MessageSvgImage
164
165
Url = emoji.Url,
166
- Alt = "",
+ Alt = emoji.EmojiId,
167
Height = 24,
168
Width = 24,
169
};
0 commit comments