()
| 2566 | } |
| 2567 | |
| 2568 | static async fetchActiveChannelStats() { |
| 2569 | try { |
| 2570 | const response = await request(`${host}/proxy/ts/status`); |
| 2571 | return response; |
| 2572 | } catch (e) { |
| 2573 | errorNotification('Failed to fetch active channel stats', e); |
| 2574 | throw e; |
| 2575 | } |
| 2576 | } |
| 2577 | |
| 2578 | static async getLogos(params = {}) { |
| 2579 | try { |
no test coverage detected