mirror of
https://github.com/lecepin/WeChatVideoDownloader.git
synced 2025-04-06 04:15:43 +08:00
replace url with video desc
This commit is contained in:
parent
2720364707
commit
40a3bb88ef
@ -43,9 +43,9 @@ function App() {
|
|||||||
dataSource={captureList}
|
dataSource={captureList}
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: '视频地址(捕获中……)',
|
title: '视频标题(捕获中……)',
|
||||||
dataIndex: 'url',
|
dataIndex: 'description',
|
||||||
key: 'url',
|
key: 'description',
|
||||||
render: value => value,
|
render: value => value,
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
},
|
},
|
||||||
|
@ -218,8 +218,8 @@ export default createMachine(
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
action_视频捕获: actions.assign(({ captureList }, { url, size, description, decode_key, ...other }) => {
|
action_视频捕获: actions.assign(({ captureList }, { url, size, description, decodeKey, ...other }) => {
|
||||||
captureList.push({ size, url, prettySize: prettyBytes(+size), ...other });
|
captureList.push({ size, url, prettySize: prettyBytes(+size), description, decodeKey, ...other });
|
||||||
|
|
||||||
return {
|
return {
|
||||||
captureList: uniqBy(captureList, 'url'),
|
captureList: uniqBy(captureList, 'url'),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user