修复收藏夹播放多集视频的BUG 🎉

This commit is contained in:
hunlongyu
2020-07-15 23:51:27 +08:00
parent 001772d75c
commit 299367f0b8
4 changed files with 7 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "zy",
"version": "1.2.1",
"version": "1.2.4",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",

View File

@@ -80,7 +80,10 @@ export default {
this.detail = {
show: true,
key: e.site,
info: e
info: {
id: e.ids,
name: e.name
}
}
},
playEvent (e) {

View File

@@ -15,4 +15,4 @@ app.post('/api', async (req, res) => {
})
})
app.listen(48484)
app.listen(44444)

View File

@@ -2,7 +2,7 @@ import { sites } from '../dexie'
import axios from 'axios'
import parser from 'fast-xml-parser'
const zy = {
ports: 48484, // 端口号
ports: 44444, // 端口号
xmlConfig: { // XML 转 JSON 配置
trimValues: true,
textNodeName: '_t',