diff --git a/src/ApostilleAccount.ts b/src/ApostilleAccount.ts index 2cb4501..56aeea3 100644 --- a/src/ApostilleAccount.ts +++ b/src/ApostilleAccount.ts @@ -334,8 +334,8 @@ export class ApostilleAccount { * @returns {Promise} * @memberof ApostilleAccount */ - public async isOwned(): Promise { - const cossignatories = await this.getCosignatories(); + public async isOwned(urls?: string): Promise { + const cossignatories = await this.getCosignatories(urls); if (cossignatories.length > 0) { return true; }