private void setPictureToImageComponent() {
        boolean isLocal = this.sessionUser.second;
        if(isLocal) {
            Bitmap profilePic = BitmapFactory.decodeFile(this.sessionUser.first.getProfileImagePathAndName());
            Glide.with(this).load(profilePic).into(imageView);