mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
13 lines
378 B
C#
13 lines
378 B
C#
using System;
|
|
|
|
namespace NadekoBot.Services
|
|
{
|
|
public static class RedisImageExtensions
|
|
{
|
|
private const string OldCdnUrl = "nadeko-pictures.nyc3.digitaloceanspaces.com";
|
|
private const string NewCdnUrl = "cdn.nadeko.bot";
|
|
|
|
public static Uri ToNewCdn(this Uri uri)
|
|
=> new(uri.ToString().Replace(OldCdnUrl, NewCdnUrl));
|
|
}
|
|
} |