Fixing more urls

This commit is contained in:
Absurdon 2017-04-18 16:14:51 +02:00
parent d8111393db
commit 5519eb6cf1
3 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ const InfoButton = exports.InfoButton = React.createClass({
</a>
</li>
<li>
<a href="http://www.ensl.org/articles/464" target="_blank">
<a href="https://www.ensl.org/articles/464" target="_blank">
<i className="fa fa-legal">&nbsp;</i>&nbsp;Gather Rules
</a>
</li>

View file

@ -85,7 +85,7 @@ const AuthFailedSplash = React.createClass({
<h3><small>If you are logged on, try visiting a few pages on ENSL.org so the server can update your cookies</small></h3>
<h3><small>If this error persists please contact an admin to fix it</small></h3>
<br />
<p><a className="btn btn-primary btn-lg" href="http://www.ensl.org" role="button">Go to website</a></p>
<p><a className="btn btn-primary btn-lg" href="https://www.ensl.org" role="button">Go to website</a></p>
</div>
</div>
</div>
@ -105,7 +105,7 @@ const BannedSplash = React.createClass({
<h3>You're currently barred from joining gathers</h3>
<h3><small>Either wait for the ban to expire or talk to an admin to get it lifted</small></h3>
<br />
<p><a className="btn btn-primary btn-lg" href="http://www.ensl.org/bans" role="button">See the ban list</a></p>
<p><a className="btn btn-primary btn-lg" href="https://www.ensl.org/bans" role="button">See the ban list</a></p>
</div>
</div>
</div>

View file

@ -19,7 +19,7 @@ function User (user) {
this.username = user['username'];
this.country = user['country'];
this.time_zone = user['time_zone'];
this.avatar = enslClient.baseUrl + user['avatar'];
this.avatar = enslClient.getFullAvatarUri(user['avatar']);
this.admin = user['admin'];
this.moderator = user['moderator'];
this.team = user['team'];