Index: apps/settings.c
===================================================================
--- apps/settings.c	(revision 214)
+++ apps/settings.c	(working copy)
@@ -75,6 +75,7 @@
 #ifdef HAVE_LCD_COLOR
 #include "backdrop.h"
 #endif
+#include "scrobbler.h"
 
 #ifdef CONFIG_TUNER
 #include "radio.h"
@@ -1231,6 +1232,8 @@ void settings_apply(void)
     lcd_set_sleep_after_backlight_off(global_settings.lcd_sleep_after_backlight_off);
 #endif
 #endif /* CONFIG_BACKLIGHT */
+
+    scrobbler_set_enabled(global_settings.audioscrobbler);
 }
 
 
Index: apps/scrobbler.c
===================================================================
--- apps/scrobbler.c	(revision 214)
+++ apps/scrobbler.c	(working copy)
@@ -63,12 +63,18 @@ int cache_pos;
 struct mp3entry scrobbler_entry;
 bool pending = false;
 bool scrobbler_initialised = false;
+bool scrobbler_enabled = false;
 #ifdef CONFIG_RTC
 time_t timestamp;
 #else
 unsigned long timestamp;
 #endif
 
+void scrobbler_set_enabled(bool enabled)
+{
+    scrobbler_enabled = enabled;
+}
+
 void write_cache(void)
 {
     int i;
@@ -173,7 +179,7 @@ void scrobbler_change_event(struct mp3en
 
 int scrobbler_init(void)
 {
-    if(!global_settings.audioscrobbler)
+    if(!scrobbler_enabled)
         return -1;
 
     scrobbler_cache = buffer_alloc(SCROBBLER_MAX_CACHE*SCROBBLER_CACHE_LEN);
Index: apps/scrobbler.h
===================================================================
--- apps/scrobbler.h	(revision 214)
+++ apps/scrobbler.h	(working copy)
@@ -20,3 +20,4 @@
 void scrobbler_change_event(struct mp3entry *id);
 int scrobbler_init(void);
 void scrobbler_shutdown(void);
+void scrobbler_set_enabled(bool enabled);
