I couldn’t find a way to disable this so I just added some JavaScript to prevent it from happening. Code below for anyone curious.
(function () {
var lastTitle = undefined;
function checkTitle() {
if (lastTitle != document.title) {
document.title = 'My Desired Title';
lastTitle = document.title;
}
setTimeout(checkTitle, 100);
};
checkTitle();
})();