Show the contact name when receiving messages

Works only if the contact is stored in the config file already
This commit is contained in:
AsamK 2016-06-19 15:40:32 +02:00
parent 03c6f84fc2
commit d9b082a59e
2 changed files with 17 additions and 3 deletions

View file

@ -942,4 +942,8 @@ class Manager implements Signal {
contactsFile.delete();
}
}
public ContactInfo getContact(String number) {
return contactStore.getContact(number);
}
}