* Sends the current Session on the scope
()
| 364 | * Sends the current Session on the scope |
| 365 | */ |
| 366 | function _sendSessionUpdate(): void { |
| 367 | const isolationScope = getIsolationScope(); |
| 368 | const client = getClient(); |
| 369 | const session = isolationScope.getSession(); |
| 370 | if (session && client) { |
| 371 | client.captureSession(session); |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * Sends the current session on the scope to Sentry |
no test coverage detected