Skip to content

Commit

Permalink
use .tab-content instead of #main-container
Browse files Browse the repository at this point in the history
  • Loading branch information
sicheng1806 committed Nov 19, 2024
1 parent 5fef31a commit 0844bc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/routes/wufazhuce/one.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async function handler(): Promise<Data> {
cache.tryGet(item.link, async () => {
const rsp = await got(item.link);
const content = load(rsp.body);
item.description = content('#main-container').html() || '';
item.description = content('.tab-content').html() || '';
return item;
})
)
Expand Down

0 comments on commit 0844bc3

Please sign in to comment.