X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/57e47909ea593126a1055a5b077e7531c2fafb30..780eb8412d27bba1eaaf0a03ab74f90c62f28253:/MainController.m diff --git a/MainController.m b/MainController.m index 294e52c..4cfd11c 100755 --- a/MainController.m +++ b/MainController.m @@ -636,7 +636,6 @@ static MainController *sharedController; int elapsed = [[self currentRemote] currentSongPlayed], length = [[self currentRemote] currentSongDuration], requiredInterval = ((length / 2 < 240) ? length / 2 : 240); if ((abs(elapsed - requiredInterval) < 5) && ([[self currentRemote] playerPlayingState] == ITMTRemotePlayerPlaying)) { NSString *title = [[self currentRemote] currentSongTitle], *artist = [[self currentRemote] currentSongArtist]; - NSLog(@"Audioscrobbler: Submitting"); if (title && artist) { ITDebugLog(@"Audioscrobbler: Submitting current track"); [[AudioscrobblerController sharedController] submitTrack:title @@ -647,12 +646,9 @@ static MainController *sharedController; } else if (requiredInterval - elapsed > 0) { _audioscrobblerInterval = requiredInterval - elapsed; [_audioscrobblerTimer release]; - NSLog(@"Audioscrobbler: Creating a new timer that will run in %i seconds", _audioscrobblerInterval); ITDebugLog(@"Audioscrobbler: Creating a new timer that will run in %i seconds", _audioscrobblerInterval); _audioscrobblerTimer = [[NSTimer alloc] initWithFireDate:[NSDate dateWithTimeIntervalSinceNow:_audioscrobblerInterval] interval:1.0 target:self selector:@selector(submitAudioscrobblerTrack:) userInfo:nil repeats:NO]; [[NSRunLoop currentRunLoop] addTimer:_audioscrobblerTimer forMode:NSDefaultRunLoopMode]; - } else { - NSLog(@"Audioscrobbler: Skipping submission. %i, %i", requiredInterval, elapsed); } NS_HANDLER [self networkError:localException];