Use createFromRowID instead of createFromID for IDs that are not coming from the XML itself.

cusax-fix
Yana Stamcheva 19 years ago
parent 5259e3d048
commit d7fd29562b

@ -311,8 +311,10 @@ private History getHistory(Contact localContact, Contact remoteContact)
String remoteId = remoteContact == null ? "default" : remoteContact
.getAddress();
HistoryID historyId = HistoryID.createFromID(new String[] { "callhistory",
localId, remoteId });
HistoryID historyId = HistoryID.createFromRawID(
new String[] { "callhistory",
localId,
remoteId });
if (this.historyService.isHistoryExisting(historyId))
{

Loading…
Cancel
Save