diff --git a/lib/routes/ximalaya/album.js b/lib/routes/ximalaya/album.js index 6d4427395..1630041f1 100644 --- a/lib/routes/ximalaya/album.js +++ b/lib/routes/ximalaya/album.js @@ -14,6 +14,9 @@ const categoryDict = { module.exports = async (ctx) => { const id = ctx.params.id; // 专辑id + if (id === '31879246') { + throw 'Forbidden'; + } const isAll = ctx.params.all ? true : false; const pageSize = isAll ? 200 : 30; const AlbumInfoApi = `https://www.ximalaya.com/revision/album?albumId=${id}`; // 专辑数据的API