Skip to content

Commit

Permalink
Fix showing SiVa url in Diagnostics view
Browse files Browse the repository at this point in the history
  • Loading branch information
martenrebane committed Oct 28, 2024
1 parent f50c661 commit 571d46e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MoppApp/MoppApp/DiagnosticsViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ class DiagnosticsViewController: MoppViewController, UIDocumentPickerDelegate {

configURL.text = formatString(text: "CONFIG_URL:", additionalText: decodedConf.METAINF.URL)
tslURL.text = formatString(text: "TSL_URL:", additionalText: "\(getMoppConfiguration().TSLURL) \(formatLOTLVersion(version: getLOTLVersion()))")
sivaURL.text = formatString(text: "SIVA_URL:", additionalText: decodedConf.SIVAURL)
sivaURL.text = formatString(text: "SIVA_URL:", additionalText: DefaultsHelper.sivaUrl ?? decodedConf.SIVAURL)
tsaURL.text = formatString(text: "TSA_URL:", additionalText: DefaultsHelper.timestampUrl ?? decodedConf.TSAURL)
ldapPersonURL.text = formatString(text: "LDAP_PERSON_URL:", additionalText: decodedConf.LDAPPERSONURL)
ldapCorpURL.text = formatString(text: "LDAP_CORP_URL:", additionalText: decodedConf.LDAPCORPURL)
Expand Down

0 comments on commit 571d46e

Please sign in to comment.