You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
A possible quick fix for this, may be to add validation to the interface on the website to check whether the emote set that is being deleted is categorized as a "Personal Emote Set" so users do not accidentally delete their emote sets.
Here's an example of how you might be able to apply the fix in EmoteInteractions.vue, a different variable may be needed to identify between a personal emote set versus a channel emote set.
constdeleteEmote=()=>{if(props.emote&&props.emote.owner?.id===clientUser.value.id){// Display an error message or take appropriate actionreturn;}// Existing delete emote logic// ...};
Or, simply removing the ability to use "deleteEmote" for Personal Emote Sets and leave the functionality as is for channel emote sets.
Current Behavior
Once a user has deleted their personal emote set, they are not able to recreate it.
Expected Behavior
If the user is a 7TV subscriber and they do not have an existing personal emote set, they should be able to create a new personal emote set.
Related issue from Extension: SevenTV/Extension#650
The text was updated successfully, but these errors were encountered: