Mercurial > hg > orthanc
comparison OrthancServer/Sources/Database/StatelessDatabaseOperations.cpp @ 5225:5874e5dd9a38
merge
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 03 Apr 2023 22:31:32 +0200 |
parents | feba2b0e91bc 450ac804d3af |
children | 49e906a8fea2 ec3dd0ba67a1 |
comparison
equal
deleted
inserted
replaced
5224:feba2b0e91bc | 5225:5874e5dd9a38 |
---|---|
413 { | 413 { |
414 ServerIndexChange change(changeType, resourceType, publicId); | 414 ServerIndexChange change(changeType, resourceType, publicId); |
415 | 415 |
416 if (changeType <= ChangeType_INTERNAL_LastLogged) | 416 if (changeType <= ChangeType_INTERNAL_LastLogged) |
417 { | 417 { |
418 transaction_.LogChange(internalId, change); | 418 transaction_.LogChange(changeType, resourceType, internalId, publicId, change.GetDate()); |
419 } | 419 } |
420 | 420 |
421 GetTransactionContext().SignalChange(change); | 421 GetTransactionContext().SignalChange(change); |
422 } | 422 } |
423 | 423 |