Skip to content

Commit

Permalink
fix: 🐛 直播视频不展示下载进度
Browse files Browse the repository at this point in the history
  • Loading branch information
caorushizi committed May 26, 2024
1 parent 912ce33 commit ccf17b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/renderer/src/nodes/HomePage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ const HomePage: FC<Props> = ({ filter = DownloadFilter.list }) => {
};

const renderDescription = (dom: ReactNode, item: DownloadItem): ReactNode => {
if (progress[item.id] && filter === DownloadFilter.list) {
if (progress[item.id] && filter === DownloadFilter.list && !item.isLive) {
const curProgress = progress[item.id];
const { percent, speed } = curProgress;

Expand Down

0 comments on commit ccf17b6

Please sign in to comment.