fix: 🐛 Don't auto mention yourself when replying/quoting yourself

This commit is contained in:
Jesse Wierzbinski 2024-04-27 21:54:13 -10:00
parent 86e254b7e7
commit a2a2149776
No known key found for this signature in database
5 changed files with 31 additions and 10 deletions

View file

@ -71,6 +71,7 @@ const loadingAuth = ref(false);
const appData = useAppData();
const tokenData = useTokenData();
const client = useMegalodon();
const me = useMe();
const compose = () => {
useEvent("composer:open");
@ -124,8 +125,9 @@ const signOut = async () => {
tokenData.value.access_token,
tokenData.value.access_token,
)
.catch(() => {});
.catch(() => { });
tokenData.value = null;
me.value = null;
};
</script>