Fix stale recsys and fix watchman uncaught promise when videoPlayer is not initialized #7014
2 changed files with 5 additions and 1 deletions
|
@ -120,6 +120,10 @@ async function sendAndResetWatchmanData() {
|
|||
return 'Can only be used with a user id';
|
||||
}
|
||||
|
||||
if (!videoPlayer) {
|
||||
return 'Video player not initialized';
|
||||
}
|
||||
|
||||
let timeSinceLastIntervalSend = new Date() - lastSentTime;
|
||||
lastSentTime = new Date();
|
||||
|
||||
|
|
|
@ -110,7 +110,7 @@ const recsys = {
|
|||
uid: userId, // selectUser
|
||||
claimId: claimId,
|
||||
pageLoadedAt: Date.now(),
|
||||
recsysId: makeSelectRecommendedRecsysIdForClaimId(claimId)(state) || recsysId,
|
||||
recsysId: null,
|
||||
recClaimIds: [],
|
||||
recClickedVideoIdx: [],
|
||||
events: [],
|
||||
|
|
Loading…
Reference in a new issue