fix: videos in posts

This commit is contained in:
trisua 2025-04-26 22:34:58 -04:00
parent 9bee739a45
commit 67492cf73f
3 changed files with 14 additions and 0 deletions
crates/app/src/public/html/auth

View file

@ -35,6 +35,10 @@ config.connections.spotify_client_id %}
document.getElementById("status").innerHTML =
`<b>${message}.</b> You can now close this tab.`;
setTimeout(() => {
window.location.href = "/settings#/connections";
}, 500);
}, 150);
</script>
{% elif connection_type == "LastFm" and user and user.connections.LastFm and
@ -60,6 +64,10 @@ config.connections.last_fm_key %}
document.getElementById("status").innerHTML =
`<b>${message}.</b> You can now close this tab.`;
setTimeout(() => {
window.location.href = "/settings#/connections";
}, 500);
}, 1000);
</script>
{% endif %} {% endblock %}