Commit 7777057d authored by Max Kellermann's avatar Max Kellermann

db/upnp: don't construct redundant empty vector<string> in Visit()

We know already that vpath is empty, let's use this instance.
parent dc5ef9ad
......@@ -704,7 +704,7 @@ UpnpDatabase::Visit(const DatabaseSelection &selection,
} else {
// Recursive is set: visit each server
for (auto& server : servers) {
if (!VisitServer(server, std::vector<std::string>(), selection,
if (!VisitServer(server, vpath, selection,
visit_directory, visit_song, visit_playlist, error))
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment