diff --git a/src/contentScripts/views/History/History.vue b/src/contentScripts/views/History/History.vue index 50c9020a..4f619792 100644 --- a/src/contentScripts/views/History/History.vue +++ b/src/contentScripts/views/History/History.vue @@ -174,7 +174,7 @@ function getHistoryUrl(item: HistoryItem) { } function getHistoryItemCover(item: HistoryItem) { - if (item.history.business === 'article') { + if (item.history.business === 'article' || item.history.business === 'article-list') { if (item.covers) return removeHttpFromUrl(`${item.covers[0]}`) } diff --git a/src/models/video/history.ts b/src/models/video/history.ts index a8b5c381..9b4843ba 100644 --- a/src/models/video/history.ts +++ b/src/models/video/history.ts @@ -23,6 +23,7 @@ export enum Business { PGC = 'pgc', LIVE = 'live', ARTICLE = 'article', + ARTICLE_LIST = 'article-list', } export interface List {