This commit is contained in:
Daniel Ponte 2025-02-09 09:49:18 -05:00
parent 88522f4e24
commit 246c024fc2

View file

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