| 6031 | // This only occurs if the corresponding "power_user.allow_nameX_display" is false. | 6031 | // This only occurs if the corresponding "power_user.allow_nameX_display" is false. |
| 6032 | | 6032 | |
| 6033 | let wrongName = isImpersonate | 6033 | let wrongName = isImpersonate |
| 6034 | ? (power_user.allow_name2_display ? '' : name2) // char | 6034 | ? (!power_user.allow_name2_display ? name2 : '') // char |
| 6035 | : (power_user.allow_name1_display ? '' : name1); // user | 6035 | : (!power_user.allow_name1_display ? name1 : ''); // user |
| 6036 | | 6036 | |
| 6037 | if (wrongName) { | 6037 | if (wrongName) { |
| 6038 | // If the message starts with the wrong name, delete the entire response | 6038 | // If the message starts with the wrong name, delete the entire response |