From 855f5b5b600633bcc4ced5c350a65f092289517d Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Mon, 7 May 2007 03:48:19 +0000 Subject: [PATCH] compare value, not memory location --- macosx/Controller.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/Controller.m b/macosx/Controller.m index 3f04de9e6..f85a66736 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1928,7 +1928,7 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy if (tempTor) tr_torrentClose(fLib, tempTor); else if (error != TR_EUNSUPPORTED && error != TR_EDUPLICATE) - [fAutoImportedNames removeObjectIdenticalTo: [file lastPathComponent]]; //can try to import later + [fAutoImportedNames removeObject: [file lastPathComponent]]; //can try to import later else; }