Merge pull request #140 from blom/adjust-regexp

Adjust some regular expressions
This commit is contained in:
Robin Ward 2013-02-12 08:47:54 -08:00
commit 95c86b0ffa
1 changed files with 2 additions and 2 deletions

View File

@ -80,8 +80,8 @@ class UserOpenIdsController < ApplicationController
data.merge!(info)
end
trusted = open_id_response.endpoint.server_url =~ /^https:\/\/www.google.com\// ||
open_id_response.endpoint.server_url =~ /^https:\/\/me.yahoo.com\//
trusted = open_id_response.endpoint.server_url =~ /\Ahttps:\/\/www\.google\.com\// ||
open_id_response.endpoint.server_url =~ /\Ahttps:\/\/me\.yahoo\.com\//
email = data[:email]
user_open_id = UserOpenId.where(url: open_id_response.display_identifier).first