| 7571 | await this.markImportedSessionAsForked(session); |
| 7572 | if (this.isViewingSession(session.id)) this.updateUrlWithSession(session.id); |
| 7573 | } |
| 7574 | |
| 7575 | // Block sending if station is banned (check both state and cached broadcast data) |
| 7576 | const verifier = this.inferenceService.getVerificationAdapter(session); |
| 7577 | const accessInfo = this.inferenceService.getAccessInfo(session); |
| 7578 | const accessId = verifier?.getAccessId?.(accessInfo?.info); |
| 7579 | if (verifier?.supports && |
| 7580 | accessId && |
| 7581 | hasExplicitVerifierApprovalForAccessInfo(accessInfo?.info)) { |