mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
update some validation messages
This commit is contained in:
parent
a3e745e863
commit
9057723e8e
1 changed files with 3 additions and 3 deletions
|
|
@ -22,17 +22,17 @@ public bool IsValid()
|
|||
|
||||
public void SetBroken()
|
||||
{
|
||||
Messages.Add("The URL is broken.");
|
||||
Messages.Add("The URL is broken and should maybe be fixed, replaced, or removed.");
|
||||
}
|
||||
|
||||
public void SetSupportsHttps()
|
||||
{
|
||||
Messages.Add("The URL is set to http but can support https.");
|
||||
Messages.Add("The URL is set to `http` but can support and should probably be changed to `https`.");
|
||||
}
|
||||
|
||||
public void SetRedirectsTo(Uri uri)
|
||||
{
|
||||
Messages.Add($"The URL redirects to {uri}.");
|
||||
Messages.Add($"The URL redirects and should maybe be changed to `{uri}`.");
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue