Skip to content

Commit

Permalink
fix(consts): fix typo error
Browse files Browse the repository at this point in the history
qq should match `provider/qq`, not `provider/netease`.
Also removed `netease` from default sources, as it is actually dead.

Signed-off-by: Tianling Shen <[email protected]>
  • Loading branch information
1715173329 committed Jun 5, 2021
1 parent a0e070b commit dc12970
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/consts.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const DEFAULT_SOURCE = ["netease", "kuwo", "migu", "bilibili", "pyncmd"];
const DEFAULT_SOURCE = ["kuwo", "migu", "bilibili", "pyncmd"];
const PROVIDERS = {
netease: require('./provider/netease'),
qq: require('./provider/netease'),
qq: require('./provider/qq'),
baidu: require('./provider/baidu'),
kugou: require('./provider/kugou'),
kuwo: require('./provider/kuwo'),
Expand Down

0 comments on commit dc12970

Please sign in to comment.