Skip to content

Commit

Permalink
Trim quotation marks from user token for easy copy-pasting
Browse files Browse the repository at this point in the history
  • Loading branch information
zemoto committed Nov 20, 2017
1 parent d7f5524 commit c1d74a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DiscordAutoDrop/Utilities/DiscordWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public async Task<bool> LoginAsync( Settings settings, Window owner )
{
return false;
}
token = prompt.UserToken;
token = prompt.UserToken.Trim( '\"' );
}
try
{
Expand Down

0 comments on commit c1d74a6

Please sign in to comment.