alip / mpdcron

A ‘cron’ like program for mpd. It can execute scripts based on mpd’s idle events.
http://mpd.wikia.com/wiki/Client:MPDCRON
GNU General Public License v2.0
33 stars 8 forks source link

Error in homescrape #5

Open jck opened 13 years ago

jck commented 13 years ago

When i run homescrape, i get this error after a few entries:

........ Modified 1 entries

jck commented 13 years ago

It was because the name of the song had a '%' in it, this change to def quote src fixed it: def quote src src.gsub(/'/, "''").gsub(/"/, "\"").gsub(/%/, "%%") end

alip commented 13 years ago

noted, will fix it shortly