add nsfw hint

This commit is contained in:
Lamp 2024-10-09 17:38:15 -07:00
parent a31550e205
commit 779624a722

@ -356,6 +356,8 @@ function displayError(error) {
html += ` Click "Add Emojis" to get started.`;
if (error.includes("Could not establish connection. Receiving end does not exist."))
html += `<br>Please reload your VRChat tab.`;
if (error.includes("You must upload a valid imageǃ"))
html += `<br> (NSFW images are not allowed)`;
errorDiv.innerHTML = html;
}