From 6ba5627d9d63100fdcdf2b86338a0b96e782ede4 Mon Sep 17 00:00:00 2001 From: Diego Rey Mendez Date: Fri, 3 May 2019 18:40:32 -0300 Subject: [PATCH] Increased the podspec version and re-enables URL validation. --- WordPressAuthenticator.podspec | 2 +- WordPressAuthenticator/Model/LoginFields+Validation.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WordPressAuthenticator.podspec b/WordPressAuthenticator.podspec index 2361a80f1..1ddad769f 100644 --- a/WordPressAuthenticator.podspec +++ b/WordPressAuthenticator.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "WordPressAuthenticator" - s.version = "1.4.1-beta.2" + s.version = "1.4.1-beta.3" s.summary = "WordPressAuthenticator implements an easy and elegant way to authenticate your WordPress Apps." s.description = <<-DESC diff --git a/WordPressAuthenticator/Model/LoginFields+Validation.swift b/WordPressAuthenticator/Model/LoginFields+Validation.swift index 156139c04..2c5d2576a 100644 --- a/WordPressAuthenticator/Model/LoginFields+Validation.swift +++ b/WordPressAuthenticator/Model/LoginFields+Validation.swift @@ -14,7 +14,7 @@ extension LoginFields { /// Returns *true* if the siteURL contains a valid URL. False otherwise. /// func validateSiteForSignin() -> Bool { - return true //siteAddress.isValidURL() + return siteAddress.isValidURL() } /// Returns *true* if the credentials required for account creation have been provided.