summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-09-11 18:06:30 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-09-11 18:06:30 +0200
commit3b517282516c7b7006bc68f49b315c37fcb73b48 (patch)
treecdb0478c7d052450dd1b0374abe789c16f2c0f2d /plugins
parent8405e1a9f11818e7f9df1faf6f035719612b6457 (diff)
run "lookup at last.fm" in background
Diffstat (limited to 'plugins')
-rw-r--r--plugins/lastfm/lastfm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c
index f71bc2dc..27c6f6f0 100644
--- a/plugins/lastfm/lastfm.c
+++ b/plugins/lastfm/lastfm.c
@@ -843,7 +843,7 @@ lfm_action_lookup (DB_plugin_action_t *action, DB_playItem_t *it)
return 0;
char *command = NULL;
- if (-1 == asprintf (&command, "xdg-open 'http://www.last.fm/music/%s/_/%s'", eartist, etitle))
+ if (-1 == asprintf (&command, "xdg-open 'http://www.last.fm/music/%s/_/%s' &", eartist, etitle))
return 0;
printf ("executing %s\n", command);
system (command);