worsen audio experience for safari

This commit is contained in:
Roland Osborne 2022-05-25 12:07:47 -07:00
parent be27a3d726
commit 04c965847b
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ export function AudioAsset({ label, audioUrl }) {
const onReady = () => { const onReady = () => {
if (!ready) { if (!ready) {
setReady(true); setReady(true);
setPlaying(true); setPlaying(false);
} }
} }

View File

@ -35,7 +35,7 @@ export function useRegistry() {
updateState({ busy: true }); updateState({ busy: true });
try { try {
let profiles = await getListing(state.server) let profiles = await getListing(state.server)
updateState({ profiles: profiles }); updateState({ profiles: profiles.filter(contact => contact.guid !== profile.state.profile.guid) });
} }
catch (err) { catch (err) {
window.alert(err) window.alert(err)