diff --git a/Application/PlaybackController.m b/Application/PlaybackController.m index 02f6457b0..6d58fb397 100644 --- a/Application/PlaybackController.m +++ b/Application/PlaybackController.m @@ -101,6 +101,10 @@ NSString *CogPlaybackDidStopNotficiation = @"CogPlaybackDidStopNotficiation"; } - (IBAction)pause:(id)sender { + if(!([playlistController currentEntry].seekable)) { + return [self stop:sender]; + } + [[NSUserDefaults standardUserDefaults] setInteger:CogStatusPaused forKey:@"lastPlaybackStatus"]; [audioPlayer pause];