mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
Fixed .feedadd, closes #388
This commit is contained in:
@@ -32,8 +32,8 @@ public partial class Searches
|
|||||||
[UserPerm(GuildPerm.ManageMessages)]
|
[UserPerm(GuildPerm.ManageMessages)]
|
||||||
public async Task Feed(string url, [Leftover] ITextChannel channel = null)
|
public async Task Feed(string url, [Leftover] ITextChannel channel = null)
|
||||||
{
|
{
|
||||||
if (Uri.TryCreate(url, UriKind.Absolute, out var uri)
|
if (!Uri.TryCreate(url, UriKind.Absolute, out var uri)
|
||||||
&& (uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps))
|
|| uri.Scheme != Uri.UriSchemeHttp || uri.Scheme != Uri.UriSchemeHttps)
|
||||||
{
|
{
|
||||||
await ReplyErrorLocalizedAsync(strs.feed_invalid_url);
|
await ReplyErrorLocalizedAsync(strs.feed_invalid_url);
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user