angular-reddit-clone icon indicating copy to clipboard operation
angular-reddit-clone copied to clipboard

insert comment with username null

Open najiboulhouch opened this issue 2 years ago • 0 comments

Hi @SaiUpadhyayula,

New comment was added with Null username, can you fix this in your code ?

My proposition was to add username from authservice that was stored in local storage.

ViewPostComponent file :

before :

      this.commentPayload = {
        text : '',
        postId : this.postId,
      };

after :

      this.commentPayload = {
        text : '',
        postId : this.postId,
        username : authService.getUsername(),
      };

najiboulhouch avatar Sep 13 '23 14:09 najiboulhouch