diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2014-02-28 13:57:17 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2014-02-28 13:57:17 +0100 |
commit | 24461d1653aa547d4da054e426608270e189feb6 (patch) | |
tree | 7d5e6857b0956bccc579b30e5a11992931fb31b5 | |
parent | 723939b81c5200dd219798c2bbd4b2d762956457 (diff) | |
download | dotfiles-24461d1653aa547d4da054e426608270e189feb6.tar.gz dotfiles-24461d1653aa547d4da054e426608270e189feb6.tar.bz2 dotfiles-24461d1653aa547d4da054e426608270e189feb6.zip |
radiode: Fix title parsing
-rw-r--r-- | .local/share/libquvi-scripts/media/radiode.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/share/libquvi-scripts/media/radiode.lua b/.local/share/libquvi-scripts/media/radiode.lua index 7b0f1c6..b56f659 100644 --- a/.local/share/libquvi-scripts/media/radiode.lua +++ b/.local/share/libquvi-scripts/media/radiode.lua @@ -21,7 +21,7 @@ function parse(qargs) end qargs.id = qargs.input_url:match('http://(.-)%.radio%.de') - qargs.title = c:match('property="og:title" content="(.-)">') + qargs.title = c:match('property="og:title" content="(.-)"') qargs.thumb_url = c:match('property="og:image" content="(.-)"') local url = c:match('_getPlaylist.*"stream":"(.-)"') |