coslyk / moonplayer

Video player that can play online videos from youtube, bilibili etc.
https://coslyk.github.io/moonplayer.html
GNU General Public License v3.0
638 stars 93 forks source link

下载某些分段超过10段的电影,合并顺序不对 #75

Closed SoulMelody closed 5 years ago

SoulMelody commented 5 years ago
diff --git a/src/parserbase.cpp b/src/parserbase.cpp
index cff5999..637497d 100644
--- a/src/parserbase.cpp
+++ b/src/parserbase.cpp
@@ -89,7 +89,7 @@ void ParserBase::finishParsing()
     else
     {
         for (int i = 0; i < result.urls.size(); i++)
-            names << QString("%1_%2.%3").arg(result.title, QString::number(i), result.container);
+            names << QString("%1_%2.%3").arg(result.title, QString::number(i).rightJustified(3, '0'), result.container);
     }

     // Download
coslyk commented 5 years ago

感谢反馈!