diff --git a/iMEGA/Utils/Shared Views/ViewControllers/CustomModalAlert/CustomModalAlertViewController+Additions.swift b/iMEGA/Utils/Shared Views/ViewControllers/CustomModalAlert/CustomModalAlertViewController+Additions.swift index c5b5f0ab64..e2762b2f8a 100644 --- a/iMEGA/Utils/Shared Views/ViewControllers/CustomModalAlert/CustomModalAlertViewController+Additions.swift +++ b/iMEGA/Utils/Shared Views/ViewControllers/CustomModalAlert/CustomModalAlertViewController+Additions.swift @@ -1,7 +1,7 @@ extension CustomModalAlertViewController { @objc func updateDetailAttributedTextWithLink(_ detail: NSAttributedString) { - detailLabel.isHidden = true - detailTextView.isHidden = false - detailTextView.attributedText = detail + detailLabel?.isHidden = true + detailTextView?.isHidden = false + detailTextView?.attributedText = detail } }