function addSizeToGoogleProfilePic()

in cloud-functions-start/public/scripts/main.js [238:243]


function addSizeToGoogleProfilePic(url) {
  if (url.indexOf('googleusercontent.com') !== -1 && url.indexOf('?') === -1) {
    return url + '?sz=150';
  }
  return url;
}