A few more throwaway variable syntax updated

This commit is contained in:
Kwoth
2022-02-01 13:54:25 +01:00
parent 7ee51332b0
commit b22cd5a81e
8 changed files with 12 additions and 12 deletions

View File

@@ -117,10 +117,10 @@ public class PatreonRewardsService : INService, IReadyExecutor
private bool HasPatreonCreds(IBotCredentials creds)
{
var _1 = creds.Patreon.ClientId;
var _2 = creds.Patreon.ClientSecret;
var _4 = creds.Patreon.RefreshToken;
return !(string.IsNullOrWhiteSpace(_1) || string.IsNullOrWhiteSpace(_2) || string.IsNullOrWhiteSpace(_4));
var cid = creds.Patreon.ClientId;
var cs = creds.Patreon.ClientSecret;
var rt = creds.Patreon.RefreshToken;
return !(string.IsNullOrWhiteSpace(cid) || string.IsNullOrWhiteSpace(cs) || string.IsNullOrWhiteSpace(rt));
}
public async Task RefreshPledges(IBotCredentials creds)