We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b33a56c commit a8fd60aCopy full SHA for a8fd60a
CHANGELOG.md
@@ -1,5 +1,6 @@
1
# 1.1.1 - 2013-12-10
2
* Also add child files in batch mode
3
+* Fixed another possible crash caused by Unicode filenames
4
* Tweak logging in the torrent creation window
5
6
# 1.1.0 - 2013-12-09
createtorrent.cpp
@@ -82,13 +82,13 @@ void CreateTorrent::run() {
82
83
QStringList inputList;
84
if(!this->isBatch)
85
- inputList.append(this->source.toUtf8().constData());
+ inputList.append(this->source);
86
else {
87
QDirIterator iit(this->source);
88
while(iit.hasNext()) {
89
QString fn = iit.next();
90
if(file_filter(fn.toUtf8().constData()))
91
- inputList.append(fn.toUtf8().constData());
+ inputList.append(fn);
92
}
93
94
0 commit comments