From cdaf08b449760ea268afee63f4d6db12b5b89bb8 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Tue, 18 Nov 2025 12:19:39 -0700 Subject: [PATCH] Another Fix --- freepbx.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/freepbx.js b/freepbx.js index 6186179..73cf5d9 100644 --- a/freepbx.js +++ b/freepbx.js @@ -168,8 +168,8 @@ class FreepbxManager { }`; const variables = { - ext, name, + ext }; return await this.pbxCall(query, variables); @@ -180,7 +180,7 @@ class FreepbxManager { const query = gql` mutation updateExt($ext: ID!, $name: String, $password: String) { updateExtension(input: { - name: $name + name: test extensionId: $ext extPassword: $password }) { @@ -190,7 +190,7 @@ class FreepbxManager { }`; const variables = { ext, - password, + password }; return await this.pbxCall(query, variables); }