mirror of
https://github.com/AsamK/signal-cli
synced 2025-09-02 12:30:39 +00:00
Change Id to Number for listContacts
This commit is contained in:
parent
aa810412e8
commit
99971edd77
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ public class ListContactsCommand implements LocalCommand {
|
||||||
}
|
}
|
||||||
List<ContactInfo> contacts = m.getContacts();
|
List<ContactInfo> contacts = m.getContacts();
|
||||||
for (ContactInfo c : contacts) {
|
for (ContactInfo c : contacts) {
|
||||||
System.out.println(String.format("Id: %s Name: %s", c.number, c.name));
|
System.out.println(String.format("Number: %s Name: %s", c.number, c.name));
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue