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 = () => {
if (!ready) {
setReady(true);
setPlaying(true);
setPlaying(false);
}
}

View File

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