()
| 1837 | } |
| 1838 | |
| 1839 | static async getGrid() { |
| 1840 | try { |
| 1841 | const response = await request(`${host}/api/epg/grid/`); |
| 1842 | |
| 1843 | return response.data; |
| 1844 | } catch (e) { |
| 1845 | errorNotification('Failed to retrieve program grid', e); |
| 1846 | } |
| 1847 | } |
| 1848 | |
| 1849 | static async getProgramDetail(programId) { |
| 1850 | try { |
no test coverage detected