Commit 47457d7d authored by nanahira's avatar nanahira

trim string in base64 deckcode

parent c8105439
Pipeline #4064 passed with stages
in 8 minutes and 59 seconds
......@@ -1551,7 +1551,7 @@ public class DeckManager : ServantWithCardDescription
bool res = true;
try
{
byte[] buffer = Convert.FromBase64String(base64);
byte[] buffer = Convert.FromBase64String(base64.Trim());
int offset = 0;
int mainc = BitConverter.ToInt32(buffer, offset);
offset += 4;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment