diff --git a/lib/routes/zimuku/index.js b/lib/routes/zimuku/index.js index ee6529c77..915f835a1 100644 --- a/lib/routes/zimuku/index.js +++ b/lib/routes/zimuku/index.js @@ -3,7 +3,7 @@ const cheerio = require('cheerio'); module.exports = async (ctx) => { const { type = 'mv' } = ctx.params; - const baseUrl = 'http://www.zimuku.la'; + const baseUrl = 'https://www.zimuku.org'; const url = `${baseUrl}/newsubs?t=${type}`; const response = await got(url); const $ = cheerio.load(response.data);