diff --git a/src/NadekoBot/Modules/Searches/Crypto/CryptoService.cs b/src/NadekoBot/Modules/Searches/Crypto/CryptoService.cs index 6903e8c4f..bc8e53b9d 100644 --- a/src/NadekoBot/Modules/Searches/Crypto/CryptoService.cs +++ b/src/NadekoBot/Modules/Searches/Crypto/CryptoService.cs @@ -79,7 +79,7 @@ public class CryptoService : INService } }, "", - TimeSpan.FromHours(1)); + TimeSpan.FromHours(2)); return JsonConvert.DeserializeObject(fullStrData)?.Data ?? new(); } diff --git a/src/NadekoBot/Modules/Utility/Patreon/PatreonRewardsService.cs b/src/NadekoBot/Modules/Utility/Patreon/PatreonRewardsService.cs index 5e72fdabc..c60f4a4c9 100644 --- a/src/NadekoBot/Modules/Utility/Patreon/PatreonRewardsService.cs +++ b/src/NadekoBot/Modules/Utility/Patreon/PatreonRewardsService.cs @@ -264,7 +264,7 @@ public class PatreonRewardsService : INService, IReadyExecutor var toAward = eligibleFor - usr.AmountRewardedThisMonth; usr.LastReward = now; - usr.AmountRewardedThisMonth = toAward; + usr.AmountRewardedThisMonth = eligibleFor; await uow.SaveChangesAsync(); await _currency.AddAsync(userId, toAward, new("patreon", "update"));