legacy fix

This commit is contained in:
2024-01-21 19:34:30 +01:00
parent c507523b27
commit 8d22b26843

View File

@@ -3,7 +3,8 @@
import { browser } from '$app/environment'; import { browser } from '$app/environment';
if (browser) { if (browser) {
goto('/streams/', { replaceState: true }); // setTimeout needed for goto to work on ios...
setTimeout(() => goto('/streams', { replaceState: true }), 0);
} }
</script> </script>