[FIX] double slashes in avatar url (#17739)

pull/17597/head^2
Shiqi Mei 6 years ago committed by GitHub
parent f509da3866
commit ab994fb7eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/apps/client/RealAppsEngineUIHost.js

@ -11,7 +11,7 @@ export class RealAppsEngineUIHost extends AppsEngineUIHost {
constructor() {
super();
this._baseURL = baseURI;
this._baseURL = baseURI.replace(/\/$/, '');
}
getUserAvatarUrl(username) {

Loading…
Cancel
Save