text-generation-webui-mirror/js/update_big_picture.js
2025-04-26 08:56:54 -03:00

7 lines
260 B
JavaScript

function updateBigPicture() {
var existingElement = document.querySelector(".bigProfilePicture");
if (existingElement) {
var timestamp = new Date().getTime();
existingElement.src = "/file/user_data/cache/pfp_character.png?time=" + timestamp;
}
}