Updating files to 1.4.9
This commit is contained in:
@@ -230,6 +230,7 @@ command_result ConnectedClient::handleCommand(Command &cmd) {
|
||||
else if (command == "playlistpermlist") return this->handleCommandPlaylistPermList(cmd);
|
||||
else if (command == "playlistaddperm") return this->handleCommandPlaylistAddPerm(cmd);
|
||||
else if (command == "playlistdelperm") return this->handleCommandPlaylistDelPerm(cmd);
|
||||
else if (command == "playlistclientlist") return this->handleCommandPlaylistClientList(cmd);
|
||||
else if (command == "playlistclientpermlist") return this->handleCommandPlaylistClientPermList(cmd);
|
||||
else if (command == "playlistclientaddperm") return this->handleCommandPlaylistClientAddPerm(cmd);
|
||||
else if (command == "playlistclientdelperm") return this->handleCommandPlaylistClientDelPerm(cmd);
|
||||
@@ -1462,7 +1463,7 @@ command_result ConnectedClient::handleCommandPermFind(Command &cmd) {
|
||||
uint8_t t;
|
||||
};
|
||||
|
||||
std::deque<CommandPerm> perms;
|
||||
std::vector<CommandPerm> perms;
|
||||
perms.resize(entries.size());
|
||||
size_t index = 0;
|
||||
for(const auto& entry : entries) {
|
||||
@@ -1515,7 +1516,7 @@ command_result ConnectedClient::handleCommandPermFind(Command &cmd) {
|
||||
return &a > &b;
|
||||
});
|
||||
|
||||
Command result("");
|
||||
Command result(this->notify_response_command("notifypermfind"));
|
||||
index = 0;
|
||||
|
||||
// http://yat.qa/ressourcen/server-query-kommentare/#permfind
|
||||
|
||||
Reference in New Issue
Block a user