Something went wrong while setting issue due date.
http:// and https:// prefix in x509 CA don't work
When I prepend http:// and https:// to the CA address the resulting URL is
"https://http://caaddress.domain"
or
"https://https://caaddress.domain".
I suggest changing in NoMADMenuController.swift
if !certCATest.contains("http://") || !certCATest.contains("https://") {
to
if !certCATest.contains("http://") && !certCATest.contains("https://") {