BUGFIX: Fix some 'File Not found' warning in the Web UI

This commit is contained in:
Christophe Dumez
2010-12-13 17:34:20 +00:00
parent 6a38f69fad
commit a67caf1730
2 changed files with 3 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
- BUGFIX: Fix alignment issues in program preferences
- BUGFIX: Make sure we don't move completed torrent to the temp directory
for checking (closes #602938)
- BUGFIX: Fix some 'File Not found' warning in the Web UI
* Sun Dec 5 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.5.1
- BUGFIX: Fix possible crash when right-clicking on a torrent

View File

@@ -217,9 +217,11 @@ void HttpConnection::respond() {
} else {
if(list[1] == "preferences") {
respondPreferencesJson();
return;
} else {
if(list[1] == "transferInfo") {
respondGlobalTransferInfoJson();
return;
}
}
}