Added missing trailing slash in AuthenticationService.

arthursv
Diva Canto 2009-08-06 17:42:28 -07:00
parent ea940d98f9
commit 11c698af67
1 changed files with 2 additions and 0 deletions

View File

@ -83,6 +83,8 @@ namespace OpenSim.Services.AuthenticationService
m_PerformAuthentication = authConfig.GetBoolean("Authenticate", true);
m_AuthorityURL = "http://" + authConfig.GetString("Authority", "localhost");
if (!m_AuthorityURL.EndsWith("/"))
m_AuthorityURL += "/";
}
//