Skip to content

Commit

Permalink
Increased the podspec version and re-enables URL validation.
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoreymendez committed May 3, 2019
1 parent e9e20d3 commit 6ba5627
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WordPressAuthenticator.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion WordPressAuthenticator/Model/LoginFields+Validation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6ba5627

Please sign in to comment.