Compare commits

...

2 commits

Author SHA1 Message Date
Andrew Kelley
6ccede1e88 Release 0.2.1 2012-10-23 00:09:14 -04:00
Andrew Kelley
19207dc1cb upload plugin: don't check for 'localhost' bind_to_address in mpd.conf 2012-10-23 00:08:39 -04:00
2 changed files with 1 additions and 4 deletions

View file

@ -2,7 +2,7 @@
"name": "groovebasin",
"description": "No-nonsense music client and daemon based on mpd",
"author": "Andrew Kelley <superjoe30@gmail.com>",
"version": "0.2.0",
"version": "0.2.1",
"licenses": [
{
"type": "MIT",

View file

@ -38,9 +38,6 @@ module.exports = class Upload extends Plugin
unless conf.bind_to_address?.unix_socket?
@is_enabled = false
console.warn "bind_to_address does not have a unix socket enabled in #{conf_path}. Uploading disabled."
unless conf.bind_to_address?.network is "localhost"
@is_enabled = false
console.warn "bind_to_address does not have a definition that is 'localhost' in #{conf_path}. Uploading disabled."
if conf.music_directory?
@music_lib_path = conf.music_directory
else