This commit is contained in:
Kieran 2023-01-12 21:38:39 +00:00
parent 192877c5d2
commit 1542a11f56
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -61,7 +61,7 @@ export class ServiceProvider {
}
async RegisterHandle(handle: string, domain: string, pubkey: string): Promise<HandleRegisterResponse | ServiceError> {
return await this._GetJson("/registration/register", "PUT", { name: handle, domain, pk: pubkey });
return await this._GetJson("/registration/register", "PUT", { name: handle, domain, pk: pubkey, ref: "snort" });
}
async CheckRegistration(token: string): Promise<CheckRegisterResponse | ServiceError> {