diff --git a/lib/routes/kemono/index.ts b/lib/routes/kemono/index.ts index 8bb550383..16ecf3be6 100644 --- a/lib/routes/kemono/index.ts +++ b/lib/routes/kemono/index.ts @@ -125,7 +125,11 @@ async function handler(ctx) { content(this).html(``); }); - item.description = content('.post__body').html(); + item.description = content('.post__body') + .each(function () { + content(this).find('.ad-container').remove(); + }) + .html(); item.author = content('.post__user-name').text(); item.title = content('.post__title span').first().text(); item.guid = item.link.replace('kemono.su', 'kemono.party');