Test fix for ext deletion

This commit is contained in:
Christopher Cookman 2025-02-17 10:09:01 -07:00
parent 41e80eebf9
commit 44ff217949

View file

@ -70,7 +70,12 @@ class FreepbxManager {
extensionId: ext.match(/\d+/)[0],
};
try {
return await this.pbxCall(query, variables);
} catch (err) {
console.error("Failed to fetch extension:", err);
return false;
}
}
async listExtensions() {