()
| 511 | } |
| 512 | |
| 513 | async isReachable(): Promise<boolean> { |
| 514 | try { |
| 515 | // Use info endpoint to test connectivity with 500ms timeout |
| 516 | await send_rpc_request(this.endpoint, '/prpc/Tappd.Info', '{}', 500) |
| 517 | return true |
| 518 | } catch (error) { |
| 519 | return false |
| 520 | } |
| 521 | } |
| 522 | } |
no test coverage detected