(id)
| 1360 | } |
| 1361 | |
| 1362 | static async getPlaylist(id) { |
| 1363 | try { |
| 1364 | const response = await request(`${host}/api/m3u/accounts/${id}/`); |
| 1365 | |
| 1366 | return response; |
| 1367 | } catch (e) { |
| 1368 | errorNotification(`Failed to retrieve M3U account ${id}`, e); |
| 1369 | } |
| 1370 | } |
| 1371 | |
| 1372 | static async getPlaylists() { |
| 1373 | try { |
no test coverage detected