diff --git a/Tusker/Screens/Gallery/VideoGalleryContentViewController.swift b/Tusker/Screens/Gallery/VideoGalleryContentViewController.swift index 2549b224..ae157703 100644 --- a/Tusker/Screens/Gallery/VideoGalleryContentViewController.swift +++ b/Tusker/Screens/Gallery/VideoGalleryContentViewController.swift @@ -138,9 +138,16 @@ class VideoGalleryContentViewController: UIViewController, GalleryContentViewCon label.textColor = .secondaryLabel label.adjustsFontForContentSizeCategory = true + let reason = UILabel() + reason.text = error.localizedDescription + reason.font = .preferredFont(forTextStyle: .subheadline) + reason.textColor = .secondaryLabel + reason.adjustsFontForContentSizeCategory = true + let stackView = UIStackView(arrangedSubviews: [ image, label, + reason, ]) stackView.translatesAutoresizingMaskIntoConstraints = false stackView.axis = .vertical