First feature version 0.1.0 #102

Merged
niggl merged 39 commits from dev into main 2021-01-15 19:31:43 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit ba218c85e0 - Show all commits

View File

@ -56,6 +56,7 @@ export class CreateGroupContact {
* Gets the new contact's address by it's id.
*/
public async getAddress(): Promise<Address> {
if (!this.address) { return null; }
let address = await getConnectionManager().get().getRepository(Address).findOne({ id: this.address });
if (!address) { throw new AddressNotFoundError; }
return address;

View File

@ -57,6 +57,7 @@ export abstract class CreateParticipant {
* Gets the new participant's address by it's id.
*/
public async getAddress(): Promise<Address> {
if (!this.address) { return null; }
let address = await getConnectionManager().get().getRepository(Address).findOne({ id: this.address });
if (!address) { throw new AddressNotFoundError; }
return address;