Fix playlist in production

This commit is contained in:
Fergal Moran
2018-05-07 21:27:32 +01:00
parent ba2b10ee78
commit 14a0208372
5 changed files with 9 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ namespace PodNoms.Api.Utils.RemoteParsers {
});
}
public bool ValidateUrl(string url) {
public static bool ValidateUrl(string url) {
var regex = new Regex(URL_REGEX);
var result = regex.Match(url);
return result.Success;