diff --git a/process/ctiServerEvents/process.js b/process/ctiServerEvents/process.js
index cceed473a5655ebdd92d99696747f80c2207eb8c..c5d87f4ec6d299a10494bd81d6fb1c303f9b126f 100644
--- a/process/ctiServerEvents/process.js
+++ b/process/ctiServerEvents/process.js
@@ -143,6 +143,8 @@ var disconnectingHandlerFn = function()
 
         if (this.contactsCall.length > 0)
         {
+            //add the linkInfo again because otherwise the linkInfo would be overwritten with null when disconnecting
+            //TODO: wait for #1047703 
             var affectedContext = this.contactsCall[0].PERSON_ID.trim() == "" ? "Organisation" : "Person";
             var affectedContactId = this.contactsCall[0].CONTACTID;
             notificationConfig.linkInfo(text.encodeMS([affectedContext, affectedContactId]));
@@ -170,9 +172,9 @@ var callData = {
     ,isConnectedCall: false
 };
 
-//for testing only:
-//callData.callAddress = "01731858728";
-//callData.localAddress = "PJSIP/212";
+//you could overwrite the values for testing for example here:
+//callData.callAddress = "exampleValue";
+//callData.localAddress = "PJSIP/xyzExample";
 
 var ic = new IncomingCallExecutor(callData);
 //ic.logData();