Plugin Directory

Changeset 2495309


Ignore:
Timestamp:
03/14/2021 02:16:44 PM (5 years ago)
Author:
paulq
Message:

Bug Fixed issue c2-1433

Location:
chatwee/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chatwee/trunk/chatwee.php

    r2459160 r2495309  
    202202        ));
    203203    } catch(Exception $exception) {
    204         chatwee_add_log("Error while executing chatwee_sso_login: " . $exception->getMessage());
     204        $chatwee_user_id = chatwee_sso_register($user);
     205        chatwee_add_log("Error while executing chatwee_sso_edit: " . $exception->getMessage());
    205206    }
    206207
  • chatwee/trunk/lib/ChatweeV2_SDK/Chatwee/HttpClient.php

    r2495274 r2495309  
    110110        if($this->responseStatus != 200) {
    111111            $responseError = $this->responseObject ? $this->responseObject->errorMessage : "ChatweeV2 PHP SDK unknown error: " . $this->responseStatus;
    112             $responseError .= ' ' . curl_error($curl);
     112            //$responseError .= ' ' . curl_error($curl);
    113113            $responseError .= " (" . $url . ")";
    114114            throw new Exception($responseError);
Note: See TracChangeset for help on using the changeset viewer.