From 282ef30d7768c50a150732a62ba1110d85e215b3 Mon Sep 17 00:00:00 2001 From: Aiden Vigue Date: Wed, 7 Jul 2021 20:04:39 -0400 Subject: [PATCH] build fiddy six fixed --- JellyfinPlayer/VideoUpNextView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JellyfinPlayer/VideoUpNextView.swift b/JellyfinPlayer/VideoUpNextView.swift index 7ad06a9d..07c5bfae 100644 --- a/JellyfinPlayer/VideoUpNextView.swift +++ b/JellyfinPlayer/VideoUpNextView.swift @@ -36,7 +36,7 @@ struct VideoUpNextView: View { .foregroundColor(.white) .font(.subheadline) .fontWeight(.semibold) - Text(viewModel.item!.getEpisodeLocator()) + Text(viewModel.item?.getEpisodeLocator() ?? "") .foregroundColor(.secondary) .font(.caption) }