Plugin Directory

Changeset 3293296


Ignore:
Timestamp:
05/14/2025 01:19:47 PM (11 months ago)
Author:
maxicomdev
Message:

tag 1.2.8

Location:
andy-votre-assistant-intelligent
Files:
1 added
2 edited
6 copied

Legend:

Unmodified
Added
Removed
  • andy-votre-assistant-intelligent/tags/1.2.8/Andy/assets/Andy-Widget/scripts/Andy.js

    r3292663 r3293296  
    279279            webSocket.onopen = () => {
    280280                console.log('WebSocket connection established');
     281
     282                if (
     283                    doesCookieExist('Andy-Conversation-Uuid') &&
     284                    doesCookieExist('Andy-Conversation-Human-Requested')
     285                ) {
     286                    const subscriptionMessage = {
     287                        action: 'subscribe-conversation',
     288
     289                        conversationUuid: getCookie('Andy-Conversation-Uuid'),
     290                    };
     291
     292                    const jsonSubscriptionMessage = JSON.stringify(subscriptionMessage);
     293
     294                    webSocket.send(jsonSubscriptionMessage);
     295                }
    281296
    282297                webSocket.addEventListener('message', webSocketReceiveMessageHandler);
  • andy-votre-assistant-intelligent/tags/1.2.8/readme.txt

    r3292663 r3293296  
    66Requires PHP: 7.3 
    77Donate link: https://essayez-andy.fr
    8 Stable tag: 1.2.7
     8Stable tag: 1.2.8
    99License: GPLv2 or later 
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html 
  • andy-votre-assistant-intelligent/trunk/Andy/assets/Andy-Widget/scripts/Andy.js

    r3292663 r3293296  
    279279            webSocket.onopen = () => {
    280280                console.log('WebSocket connection established');
     281
     282                if (
     283                    doesCookieExist('Andy-Conversation-Uuid') &&
     284                    doesCookieExist('Andy-Conversation-Human-Requested')
     285                ) {
     286                    const subscriptionMessage = {
     287                        action: 'subscribe-conversation',
     288
     289                        conversationUuid: getCookie('Andy-Conversation-Uuid'),
     290                    };
     291
     292                    const jsonSubscriptionMessage = JSON.stringify(subscriptionMessage);
     293
     294                    webSocket.send(jsonSubscriptionMessage);
     295                }
    281296
    282297                webSocket.addEventListener('message', webSocketReceiveMessageHandler);
  • andy-votre-assistant-intelligent/trunk/readme.txt

    r3292663 r3293296  
    66Requires PHP: 7.3 
    77Donate link: https://essayez-andy.fr
    8 Stable tag: 1.2.7
     8Stable tag: 1.2.8
    99License: GPLv2 or later 
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html 
Note: See TracChangeset for help on using the changeset viewer.