lisichatbot 1.8.2 → 1.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +2 -6
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -2912,17 +2912,13 @@ async function showNextStep() {
|
|
|
2912
2912
|
// If not found in normal location, check if it's still in chat from previous init
|
|
2913
2913
|
if (!element) {
|
|
2914
2914
|
element = elements.messages.querySelector(selector);
|
|
2915
|
-
|
|
2916
|
-
console.log(' ℹ️ Found element in chat messages (from previous init)');
|
|
2917
|
-
}
|
|
2915
|
+
console.log(` - messages.querySelector(): ${element ? 'FOUND ✅' : 'not found'}`);
|
|
2918
2916
|
}
|
|
2919
2917
|
|
|
2920
2918
|
// If still not found, search entire document
|
|
2921
2919
|
if (!element) {
|
|
2922
2920
|
element = document.body.querySelector(selector);
|
|
2923
|
-
|
|
2924
|
-
console.log(' ℹ️ Found element in body (moved during cleanup)');
|
|
2925
|
-
}
|
|
2921
|
+
console.log(` - body.querySelector(): ${element ? 'FOUND ✅' : 'not found'}`);
|
|
2926
2922
|
}
|
|
2927
2923
|
|
|
2928
2924
|
if (element) {
|