Fixed EncryptText.cs

This commit is contained in:
AdAstra-LD 2024-06-26 01:04:27 +02:00
parent 910844fb1b
commit ef25d51dd6

View File

@ -65,13 +65,10 @@ namespace DSPRE.MessageEnc
{
decode.Append(textChar.ToString("X4"));
hasSpecialCharacter = false;
}
if (isCompressed)
{
} else if (isCompressed) {
int shift = 0;
int trans = 0;
while (true)
{
while (true){
int compChar = textChar >> shift;
if (shift >= 0xF)
{