Skip to content

Commit

Permalink
Fix crash when enqueuing a clip from a deleted streamer in URL mass d…
Browse files Browse the repository at this point in the history
…ownloader (#1157)
  • Loading branch information
ScrubN authored Jul 20, 2024
1 parent 193136d commit dd3aa70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchDownloaderWPF/WindowUrlList.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private async void btnQueue_Click(object sender, RoutedEventArgs e)
Id = id,
Thumbnail = thumbnail,
Title = clipInfo.title,
Streamer = clipInfo.broadcaster.displayName,
Streamer = clipInfo.broadcaster?.displayName ?? Translations.Strings.UnknownUser,
Time = Settings.Default.UTCVideoTime ? clipInfo.createdAt : clipInfo.createdAt.ToLocalTime(),
Views = clipInfo.viewCount,
Game = clipInfo.game?.displayName ?? Translations.Strings.UnknownGame,
Expand Down

0 comments on commit dd3aa70

Please sign in to comment.