diff --git a/src/net/java/sip/communicator/impl/callhistory/CallHistoryServiceImpl.java b/src/net/java/sip/communicator/impl/callhistory/CallHistoryServiceImpl.java index 96f42a6a8..22b06b856 100644 --- a/src/net/java/sip/communicator/impl/callhistory/CallHistoryServiceImpl.java +++ b/src/net/java/sip/communicator/impl/callhistory/CallHistoryServiceImpl.java @@ -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)) {