diff --git a/lib/routes/liequtv/room.js b/lib/routes/liequtv/room.js index a013065f2..8dd20466a 100644 --- a/lib/routes/liequtv/room.js +++ b/lib/routes/liequtv/room.js @@ -6,7 +6,7 @@ module.exports = async (ctx) => { const id = ctx.params.id; const cache_key = `liequtv::latest_base_host::${new Date().toJSON().slice(0, 10)}`; - const url = `${ctx.cache.get(cache_key) || original_host}/${id}`; + const url = `${await ctx.cache.get(cache_key) || original_host}/${id}`; const response = await got({ method: 'get',