invisnik / laravel-steam-auth

Laravel Steam Auth
MIT License
172 stars 69 forks source link

Login Breaks! #81

Closed Dezento closed 6 years ago

Dezento commented 6 years ago
public function parseSteamID()
{

    //change to https from http  
    preg_match("#^https://steamcommunity.com/openid/id/([0-9]{17,25})#", $this->request->get('openid_claimed_id'), $matches);

    $this->steamId = is_numeric($matches[1]) ? $matches[1] : 0;
}
invisnik commented 6 years ago

79