gtotheunit91 said: @EpicRandy why the hell did I have 73 notifications from your comments??? A mod keep deleting them? |
Short explanation : my post are so important that you should always get multiple notifications
Longer explanation :Lol yep looks like if the back-end service slow down there is no UI behavior that shows you your action have registered leading you to spam the add reply button thinking it just didn't register. Being on my phone with known dead touchscreen zone only magnified the issue.
here's a pseudo code way to fix the issue that should be implemented on every button
instead of something like
function buttonClick(){
callbackEnd().then((result)=>ShowResult(result));
}
here's what it should be
function buttonClick(){
button.disabled = true;
callbackEnd().then((result)=>ShowResult(result));
}