eliminate a warning
This commit is contained in:
parent
52bad7b8a0
commit
99084a1190
|
@ -981,18 +981,18 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Torrent * torrent;
|
|
||||||
if (!(torrent = [[Torrent alloc] initWithMagnetAddress: address location: nil lib: fLib]))
|
|
||||||
{
|
|
||||||
[self invalidOpenMagnetAlert: address];
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
//determine download location
|
//determine download location
|
||||||
NSString * location = nil;
|
NSString * location = nil;
|
||||||
if ([fDefaults boolForKey: @"DownloadLocationConstant"])
|
if ([fDefaults boolForKey: @"DownloadLocationConstant"])
|
||||||
location = [[fDefaults stringForKey: @"DownloadFolder"] stringByExpandingTildeInPath];
|
location = [[fDefaults stringForKey: @"DownloadFolder"] stringByExpandingTildeInPath];
|
||||||
|
|
||||||
|
Torrent * torrent;
|
||||||
|
if (!(torrent = [[Torrent alloc] initWithMagnetAddress: address location: location lib: fLib]))
|
||||||
|
{
|
||||||
|
[self invalidOpenMagnetAlert: address];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
//change the location if the group calls for it (this has to wait until after the torrent is created)
|
//change the location if the group calls for it (this has to wait until after the torrent is created)
|
||||||
if ([[GroupsController groups] usesCustomDownloadLocationForIndex: [torrent groupValue]])
|
if ([[GroupsController groups] usesCustomDownloadLocationForIndex: [torrent groupValue]])
|
||||||
{
|
{
|
||||||
|
|
|
@ -102,7 +102,6 @@ int trashDataFile(const char * filename)
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
#warning need location (and use it)?
|
|
||||||
- (id) initWithMagnetAddress: (NSString *) address location: (NSString *) location lib: (tr_session *) lib
|
- (id) initWithMagnetAddress: (NSString *) address location: (NSString *) location lib: (tr_session *) lib
|
||||||
{
|
{
|
||||||
self = [self initWithPath: nil hash: nil torrentStruct: nil magnetAddress: address
|
self = [self initWithPath: nil hash: nil torrentStruct: nil magnetAddress: address
|
||||||
|
|
Loading…
Reference in New Issue