mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-21 07:57:22 -06:00
BUGFIX: Fix some 'File Not found' warning in the Web UI
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
- BUGFIX: Fix alignment issues in program preferences
|
- BUGFIX: Fix alignment issues in program preferences
|
||||||
- BUGFIX: Make sure we don't move completed torrent to the temp directory
|
- BUGFIX: Make sure we don't move completed torrent to the temp directory
|
||||||
for checking (closes #602938)
|
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
|
* Sun Dec 5 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.5.1
|
||||||
- BUGFIX: Fix possible crash when right-clicking on a torrent
|
- BUGFIX: Fix possible crash when right-clicking on a torrent
|
||||||
|
|||||||
@@ -217,9 +217,11 @@ void HttpConnection::respond() {
|
|||||||
} else {
|
} else {
|
||||||
if(list[1] == "preferences") {
|
if(list[1] == "preferences") {
|
||||||
respondPreferencesJson();
|
respondPreferencesJson();
|
||||||
|
return;
|
||||||
} else {
|
} else {
|
||||||
if(list[1] == "transferInfo") {
|
if(list[1] == "transferInfo") {
|
||||||
respondGlobalTransferInfoJson();
|
respondGlobalTransferInfoJson();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user