db/plugins/upnp/ContentDirectoryService: add missing closing curly brace

This commit is contained in:
Max Kellermann
2023-12-28 20:52:20 +01:00
parent 66a8afd18c
commit 9396ffb509

View File

@@ -77,8 +77,8 @@ ContentDirectoryService::readDirSlice(UpnpClient_Handle hdl,
{"BrowseFlag", "BrowseDirectChildren"}, {"BrowseFlag", "BrowseDirectChildren"},
{"Filter", "*"}, {"Filter", "*"},
{"SortCriteria", ""}, {"SortCriteria", ""},
{"StartingIndex", fmt::format_int{offset}.c_str(), {"StartingIndex", fmt::format_int{offset}.c_str()},
{"RequestedCount", fmt::format_int{count).c_str()}, {"RequestedCount", fmt::format_int{count}.c_str()},
}; };
std::vector<std::pair<std::string, std::string>> responseData; std::vector<std::pair<std::string, std::string>> responseData;
int errcode; int errcode;