@ -5099,7 +5099,7 @@ const throttle = (fn, wait) => {
fn.apply(context, args);
lastTime = Date.now();
}
}, wait - (Date.now() - lastTime));
}, Math.max(wait - (Date.now() - lastTime), 0));
};
The note is not visible to the blocked user.