Fix duplicate IDs in queries for comments/downtimes.

Fixes #5283
This commit is contained in:
Gunnar Beutner 2013-12-09 12:22:54 +01:00
parent 0b41af7639
commit 5e9ce84c17
1 changed files with 6 additions and 0 deletions

View File

@ -327,6 +327,9 @@ void ServiceDbObject::AddComments(const Service::Ptr& service)
ObjectLock olock(comments);
if (comments->GetLength() > 0)
RemoveComments(service);
BOOST_FOREACH(const Dictionary::Pair& kv, comments) {
AddComment(service, kv.second);
}
@ -489,6 +492,9 @@ void ServiceDbObject::AddDowntimes(const Service::Ptr& service)
ObjectLock olock(downtimes);
if (downtimes->GetLength() > 0)
RemoveDowntimes(service);
BOOST_FOREACH(const Dictionary::Pair& kv, downtimes) {
AddDowntime(service, kv.second);
}