New 3cx tapi server url

This commit is contained in:
2026-03-19 13:38:06 +01:00
parent 535cf6ea05
commit c16c07ea42
6 changed files with 52 additions and 43 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ import { TapiContact } from './tapi-contact'
import { debounce } from './debounce'
import { fireChangeEvents } from './utils'
import GM_fetch from '@trim21/gm-fetch'
import { Config } from './config'
export class Search {
private currentSearchText = ''
@@ -103,7 +104,7 @@ export class Search {
return
}
console.log('Searching TAPI')
var response = await GM_fetch('http://cpatapi.cpsrvweb2016.cp-austria.at/search?query=' + encodeURIComponent(searchText))
var response = await GM_fetch(Config.tapi_server_url + '/search?query=' + encodeURIComponent(searchText))
console.log('TAPI Search response', response)
var contacts = await response.json() as TapiContact[]
console.log('TAPI Contacts', contacts)