From 36f06280d21155375a4ba2b4ac60fcd26be27e5c Mon Sep 17 00:00:00 2001 From: "AnthonyMyatt.Net" Date: Fri, 8 Apr 2016 23:56:32 +1000 Subject: [PATCH] Update AEFileRecorderModule.m Should this be proxy? As proxy is defined and never used. --- TheAmazingAudioEngine/Modules/Taps/AEFileRecorderModule.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TheAmazingAudioEngine/Modules/Taps/AEFileRecorderModule.m b/TheAmazingAudioEngine/Modules/Taps/AEFileRecorderModule.m index de09cf4..7f70384 100644 --- a/TheAmazingAudioEngine/Modules/Taps/AEFileRecorderModule.m +++ b/TheAmazingAudioEngine/Modules/Taps/AEFileRecorderModule.m @@ -66,7 +66,7 @@ - (void)stopRecordingAtTime:(AEHostTicks)time completionBlock:(void(^)())block { _stopTime = time ? time : AECurrentTimeInHostTicks(); AEFileRecorderModuleWeakProxy * proxy = [AEFileRecorderModuleWeakProxy alloc]; proxy.target = self; - self.pollTimer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(pollForCompletion) + self.pollTimer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:proxy selector:@selector(pollForCompletion) userInfo:nil repeats:YES]; }