Skip to content

Commit

Permalink
Removed temp var
Browse files Browse the repository at this point in the history
  • Loading branch information
stack-fault committed Aug 27, 2024
1 parent db52871 commit 5b6fc32
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/servers/chat/mrc_multiplexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,7 @@ exports.getModule = class MrcModule extends ServerModule {

// Make sure to_user is always uppercase
try {
let to_user_uc = to_user.toUpperCase();
to_user = to_user_uc;
to_user = to_user.toUpperCase();
}
catch (e) {}

Expand Down

0 comments on commit 5b6fc32

Please sign in to comment.