mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
fix syntax error
This commit is contained in:
parent
00a80e167e
commit
16d4abe02c
@ -85,7 +85,7 @@ void AdminCheckUserBackup::handleRequest(Poco::Net::HTTPServerRequest& request,
|
||||
if(matching) continue;
|
||||
} else {
|
||||
auto lastEntry = notMatchingEntrys.back();
|
||||
if(lastEntry->user->getModel()->getId() == user_id && matching == true) {
|
||||
if(lastEntry.user->getModel()->getID() == user_id && matching == true) {
|
||||
notMatchingEntrys.pop_back();
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -64,7 +64,7 @@ struct SListEntry
|
||||
if(matching) continue;
|
||||
} else {
|
||||
auto lastEntry = notMatchingEntrys.back();
|
||||
if(lastEntry->user->getModel()->getId() == user_id && matching == true) {
|
||||
if(lastEntry.user->getModel()->getID() == user_id && matching == true) {
|
||||
notMatchingEntrys.pop_back();
|
||||
continue;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user