From 1d313d52717ec971b3c93852272c53937e1e78bb Mon Sep 17 00:00:00 2001 From: Andriy <30056636+West14@users.noreply.github.com> Date: Sun, 23 Jul 2023 12:17:45 +0300 Subject: [PATCH] [store] shorten animbbos title, reorder items --- modules/ContentStore/Service/AnimBoobsService.cs | 2 +- modules/ContentStore/Service/CapyApiService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ContentStore/Service/AnimBoobsService.cs b/modules/ContentStore/Service/AnimBoobsService.cs index 78083d1..b9c00ed 100644 --- a/modules/ContentStore/Service/AnimBoobsService.cs +++ b/modules/ContentStore/Service/AnimBoobsService.cs @@ -8,7 +8,7 @@ namespace West.TelegramBot.ContentStore.Service; public class AnimBoobsService : AbstractNsfwService { private readonly HttpClient _httpClient; - public override StoreItem StoreItem { get; } = new("anim_boobs", "Сиськи движущиеся", 120, 40); + public override StoreItem StoreItem { get; } = new("anim_boobs", "Сиськи.gif", 120, 40); public AnimBoobsService(AllowNsfw allowNsfw) : base(allowNsfw) { diff --git a/modules/ContentStore/Service/CapyApiService.cs b/modules/ContentStore/Service/CapyApiService.cs index a1f932c..c23c8bf 100644 --- a/modules/ContentStore/Service/CapyApiService.cs +++ b/modules/ContentStore/Service/CapyApiService.cs @@ -5,7 +5,7 @@ namespace West.TelegramBot.ContentStore.Service; public class CapyApiService : IRandomMediaService { - public StoreItem StoreItem { get; } = new("capybara", "Капибара", 60, 25); + public StoreItem StoreItem { get; } = new("capybara", "Капибара", 60, 120); public Task GetRandomMediaAsync() { return Task.FromResult(new RandomMedia(new InputFileUrl($"https://api.capy.lol/v1/capybara?{new Random().Next(0, 10000)}")));