Merge tag 'v4.3.8'

This commit is contained in:
Mike Barnes 2025-06-22 22:39:01 +10:00
commit c8bb04d758
18 changed files with 120 additions and 35 deletions

View file

@ -4,9 +4,12 @@ import axios from 'axios';
import ready from '../mastodon/ready';
async function checkConfirmation() {
const response = await axios.get('/api/v1/emails/check_confirmation');
const response = await axios.get('/api/v1/emails/check_confirmation', {
headers: { Accept: 'application/json' },
withCredentials: true,
});
if (response.data) {
if (response.status === 200 && response.data === true) {
window.location.href = '/start';
}
}