mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-26 11:13:47 +00:00
Skip Twitch clip projections because they can't be rendered locally (#1200)
This commit is contained in:
@@ -365,15 +365,6 @@
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
// Twitch embed
|
||||
else if (embed.TryGetTwitchClip() is { } twitchClipEmbed)
|
||||
{
|
||||
<div class="chatlog__embed">
|
||||
<div class="chatlog__embed-twitch-container">
|
||||
<iframe class="chatlog__embed-twitch" src="@twitchClipEmbed.Url" width="400" height="225"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
// YouTube embed
|
||||
else if (embed.TryGetYouTubeVideo() is { } youTubeVideoEmbed)
|
||||
{
|
||||
@@ -457,7 +448,10 @@
|
||||
</div>
|
||||
}
|
||||
// Generic video embed
|
||||
else if (embed.Kind == EmbedKind.Video && !string.IsNullOrWhiteSpace(embed.Url))
|
||||
else if (embed.Kind == EmbedKind.Video
|
||||
&& !string.IsNullOrWhiteSpace(embed.Url)
|
||||
// Twitch clips cannot be embedded in local HTML files
|
||||
&& embed.TryGetTwitchClip() is null)
|
||||
{
|
||||
var embedVideoUrl =
|
||||
embed.Video?.ProxyUrl ?? embed.Video?.Url ??
|
||||
|
||||
Reference in New Issue
Block a user