aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/post/post.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/components/post/post.component.ts')
-rw-r--r--src/app/components/post/post.component.ts20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/app/components/post/post.component.ts b/src/app/components/post/post.component.ts
index c4d64ed..c05bd10 100644
--- a/src/app/components/post/post.component.ts
+++ b/src/app/components/post/post.component.ts
@@ -103,17 +103,19 @@ export class PostComponent implements OnInit, AfterViewInit {
}
ngAfterViewInit(): void {
- this._ratingServe.getRatingByUserAndPostWithSessionStorageRequest(Guid.parse(this.paramId)).subscribe({
- next: (x: object) => {
- if (!x) {
- return;
- }
+ if (this.loggedIn) {
+ this._ratingServe.getRatingByUserAndPostWithSessionStorageRequest(Guid.parse(this.paramId)).subscribe({
+ next: (x: object) => {
+ if (!x) {
+ return;
+ }
- const isLike: boolean = Object.values(x)[3];
+ const isLike: boolean = Object.values(x)[3];
- this.changeColorOfVoteButton(isLike, !isLike);
- }
- });
+ this.changeColorOfVoteButton(isLike, !isLike);
+ }
+ });
+ }
this._defaultShareBtnInnerHTML = this.shareBtn.nativeElement.innerHTML;
}