Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
All notable changes to this project will be documented in this file.

## [1.11.7] 05th Nov, 2024
- Fix for not passing `wzrk_fetch` event on pageChanged

## [1.11.6] 04th Nov, 2024
- Fix for Checking Web Inbox when inbox Node becomes stale

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clevertap-web-sdk",
"version": "1.11.6",
"version": "1.11.7",
"description": "",
"main": "clevertap.js",
"scripts": {
Expand Down
7 changes: 1 addition & 6 deletions src/clevertap.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ import {
COMMAND_ADD,
COMMAND_REMOVE,
COMMAND_DELETE,
EVT_PUSH,
WZRK_FETCH
EVT_PUSH
} from './util/constants'
import { EMBED_ERROR } from './util/messages'
import { StorageManager, $ct } from './util/storage'
Expand Down Expand Up @@ -732,10 +731,6 @@ export default class CleverTap {

this.#request.saveAndFireRequest(pageLoadUrl, $ct.blockRequest)

if (parseInt(data.pg) === 1) {
this.event.push(WZRK_FETCH, { t: 4 })
}

this.#previousUrl = currLocation
setTimeout(() => {
if (pgCount <= 3) {
Expand Down
Loading