Replace is_linked() by is_paired()

This commit is contained in:
Sosthene 2024-11-30 20:07:56 +01:00
parent b822f351fd
commit 9efc5b089a

View File

@ -69,7 +69,7 @@ export default class Services {
public isPaired(): boolean { public isPaired(): boolean {
try { try {
return this.sdkClient.is_linking(); return this.sdkClient.is_paired();
} catch (e) { } catch (e) {
throw new Error(`isPaired ~ Error: ${e}`); throw new Error(`isPaired ~ Error: ${e}`);
} }