update token

This commit is contained in:
Dongho Kim
2026-06-23 03:22:38 +02:00
parent 456ff2db27
commit 2b8387e7ed
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -421,7 +421,7 @@ app.get('/m3u8', async (req, res) => {
if (!m3u8Url) return res.status(400).send('Missing url parameter');
try {
const response = await axios.get(m3u8Url);
const response = await axios.get(m3u8Url, { headers: buildHeaders() });
let m3u8Data = response.data;
const host = req.get('host');
const protocol = req.protocol;