blob: 3d37ca47e5e80c76450e354fcdb8bdceb6222a0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Index: rtorrent/src/core/manager.cc
===================================================================
--- rtorrent/src/core/manager.cc (revision 1060)
+++ rtorrent/src/core/manager.cc (working copy)
@@ -383,7 +383,8 @@
void
Manager::try_create_download(const std::string& uri, int flags, const command_list_type& commands) {
// If the path was attempted loaded before, skip it.
- if (!(flags & create_raw_data) &&
+ if ((flags & create_tied) &&
+ !(flags & create_raw_data) &&
!is_network_uri(uri) &&
!file_status_cache()->insert(uri, 0))
return;
|