Changeset 1047 for trunk/macosx/Controller.m
- Timestamp:
- Oct 31, 2006, 9:01:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r1046 r1047 1571 1571 { 1572 1572 int error; 1573 tr_torrent_t * tempTor = tr_torrentInit(fLib, [path UTF8String], 0, & error); 1573 tr_torrent_t * tempTor = tr_torrentInit(fLib, [[path stringByAppendingPathComponent: file] UTF8String], 1574 0, & error); 1574 1575 1575 1576 if (tempTor) … … 1588 1589 } 1589 1590 } 1590 else if (error != TR_EUNSUPPORTED ||error != TR_EDUPLICATE)1591 else if (error != TR_EUNSUPPORTED && error != TR_EDUPLICATE) 1591 1592 [fAutoImportedNames removeObjectIdenticalTo: file]; //failed to import for unknown reason, so try again later 1592 1593 else;
Note: See TracChangeset
for help on using the changeset viewer.