From f0ff7367d08c9483dc5079b5e88e99399acdea97 Mon Sep 17 00:00:00 2001 From: Rijoanul Hasan Shanto Date: Wed, 5 Apr 2023 15:38:05 +0600 Subject: [PATCH] update API endpoint URL scheme to HTTPS --- thrivedesk.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thrivedesk.php b/thrivedesk.php index bb0690b..53ce25f 100755 --- a/thrivedesk.php +++ b/thrivedesk.php @@ -138,7 +138,7 @@ private function define_constants() : void $this->define('THRIVEDESK_PLUGIN_ASSETS_PATH', plugin_dir_path(__FILE__) . 'assets'); // Url with no ending / $this->define('THRIVEDESK_APP_URL', 'https://app.thrivedesk.com'); - $this->define('THRIVEDESK_API_URL', 'http://api.thrivedesk.com'); + $this->define('THRIVEDESK_API_URL', 'https://api.thrivedesk.com'); $this->define('THRIVEDESK_DB_TABLE_CONVERSATION', 'td_conversations'); $this->define('THRIVEDESK_DB_VERSION', 1.2); $this->define('OPTION_THRIVEDESK_DB_VERSION', 'td_db_version');