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
1 changed files with 2 additions and 2 deletions

View File

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