Fix #107 #108

Merged
amigan merged 3 commits from authSignals into shareUI 2025-02-09 09:51:20 -05:00
Showing only changes of commit 246c024fc2 - Show all commits

View file

@ -59,7 +59,9 @@ export class TalkgroupService {
} }
setShare(share: Share | null) { setShare(share: Share | null) {
this.fetchAll.next(share); if (!this.authSvc.isAuth() && share !== null) {
this.fetchAll.next(share);
}
} }
ngOnDestroy() { ngOnDestroy() {