We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb80b04 commit 8fc6100Copy full SHA for 8fc6100
spider/js/独播库.js
@@ -1,15 +1,3 @@
1
-/*
2
-@header({
3
- searchable: 1,
4
- filterable: 1,
5
- quickSearch: 0,
6
- title: '独播库',
7
- author: 'EylinSir',
8
- '类型': '影视',
9
- lang: 'ds'
10
-})
11
-*/
12
-
13
var rule = {
14
类型: '影视',
15
author: 'EylinSir',
@@ -87,8 +75,8 @@ var rule = {
87
75
},
88
76
89
77
搜索: async function() {
90
- let data = await this.get(`/vodsearch?wd=${encodeURIComponent(this.KEY)}`);
91
- let url = this.getSignedUrl('/vodsearch') + `&wd=${encodeURIComponent(this.KEY)}`;
78
+ let data = await this.get(`/vodsearch?wd=${this.KEY}`);
79
+ let url = this.getSignedUrl('/vodsearch') + `&wd=${this.KEY}`;
92
80
let resp = await _fetch(url, { headers: this.headers });
93
81
return setResult(this.format(JSON.parse(await resp.text())));
94
82
0 commit comments