mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-23 19:26:57 -04:00
[GUI] Trim spaces in token input
This commit is contained in:
parent
1fe4ecb3af
commit
1ff026eba6
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ namespace DiscordChatExporter.Gui.ViewModels
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var tokenValue = TokenValue?.Trim('"');
|
var tokenValue = TokenValue?.Trim('"', ' ');
|
||||||
if (string.IsNullOrWhiteSpace(tokenValue))
|
if (string.IsNullOrWhiteSpace(tokenValue))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue