summaryrefslogtreecommitdiff
path: root/libmpd
diff options
context:
space:
mode:
Diffstat (limited to 'libmpd')
-rw-r--r--libmpd/database.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpd/database.rb b/libmpd/database.rb
index 27efa93..3c114f6 100644
--- a/libmpd/database.rb
+++ b/libmpd/database.rb
@@ -23,7 +23,7 @@ module MPDDatabase
path = String.new
end
- return send_request(command).scan(/^directory: #{path}([^\/]+?)\n/).flatten
+ return send_request(command).scan(/^directory: (#{path}[^\/]+?)\n/).flatten
end
# Counts the number of songs in the database where _field_ is _value_, as
@@ -51,7 +51,7 @@ module MPDDatabase
path = String.new
end
- return send_request(command).scan(/^file: #{path}([^\/]+?)\n/).flatten
+ return send_request(command).scan(/^file: (#{path}[^\/]+?)\n/).flatten
end
# Finds all songs in the database where _field_ contains _value_.