#1859423
Ryan McNallie
Guest

If modifying the plugin code isn’t for you want this workaround works for changing the heartbeat (although it may not the best):

// Workaround for Playlist Heartbeat
jQuery(window).load(function () {
// Clear all heartbeats
id = window.setInterval(() => {}, 0);
while (id) {
window.clearInterval(id);
id–;
}
// Redefine ds_update_page heartbeat
// 300000 == 5 minutes
setInterval(ds_update_page,300000);
});