First feature version 0.1.0 #102

Merged
niggl merged 39 commits from dev into main 2021-01-15 19:31:43 +00:00
Showing only changes of commit 420e9c4662 - Show all commits

View File

@ -29,7 +29,7 @@ export class UpdateRunnerOrganisation extends CreateRunnerGroup {
*/ */
public async getAddress(): Promise<Address> { public async getAddress(): Promise<Address> {
if (!this.address) { return null; } if (!this.address) { return null; }
let address = await getConnectionManager().get().getRepository(Address).findOne({ id: this.address.id }); let address = await getConnectionManager().get().getRepository(Address).findOne({ id: this.address });
if (!address) { throw new AddressNotFoundError; } if (!address) { throw new AddressNotFoundError; }
return address; return address;
} }