analogcode / Swift-Radio-Pro

Professional Radio Station App for iOS!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Website link

joshopkins787 opened this issue · comments

I have entered our in PopUpMenuViewController.swift by updating it where says //User you own website URL here. But whenever it is clicked on it goes to https://url.org/dms and wants to save the dms file to the device instead of opening the site.

I have just tested the code, and it's working fine with new urls:

/// PopUpMenuViewController

@IBAction func websiteButtonPressed(_ sender: UIButton) {
        // Use your own website URL here
        guard let url = URL(string: "https://fethica.com") else { return }
        UIApplication.shared.open(url, options: [:], completionHandler: nil)
}

Maybe there is a header redirection issue in your website.