summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/util
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-09-10 16:35:44 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-09-10 16:35:44 +0200
commitacce72d71bd635e30a32c940ce682dee6a807853 (patch)
tree05a9b7528b4b95e6c087d306094e154650ca5f26 /src/de/danoeh/antennapod/util
parentbdb6e008aa29d5835fad42e233d9fe45a363369b (diff)
downloadAntennaPod-acce72d71bd635e30a32c940ce682dee6a807853.zip
Fixed NullPointerException in bindToService
Diffstat (limited to 'src/de/danoeh/antennapod/util')
-rw-r--r--src/de/danoeh/antennapod/util/PlaybackController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/danoeh/antennapod/util/PlaybackController.java b/src/de/danoeh/antennapod/util/PlaybackController.java
index f43ca8d93..0253eba02 100644
--- a/src/de/danoeh/antennapod/util/PlaybackController.java
+++ b/src/de/danoeh/antennapod/util/PlaybackController.java
@@ -149,7 +149,7 @@ public abstract class PlaybackController {
if (AppConfig.DEBUG)
Log.d(TAG,
"PlaybackService is running, trying to connect without start command.");
- bound = activity.bindService(serviceIntent, mConnection, 0);
+ bound = activity.bindService(new Intent(activity, PlaybackService.class), mConnection, 0);
}
if (AppConfig.DEBUG)
Log.d(TAG, "Result for service binding: " + bound);