Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
z52c authored Jun 17, 2018
1 parent b6a7202 commit 7ae1850
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion neteaseplaylist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,14 @@ void neteasePlaylist::doJob(bool inIsGray,QString inUrl)
pos=inUrl.indexOf(QString("="));
mid=inUrl.mid(pos+1);
}
}else{
}else if(inUrl.contains("playlist/"))
{
char a[20];
getStringBetweenAandB(inUrl.toStdString().c_str(),"playlist/","/",a);
mid=QString(a);
}
else
{
finished(-1,infoList);
}

Expand Down

0 comments on commit 7ae1850

Please sign in to comment.