Merge branch 'develop' into feature/lidarr

This commit is contained in:
Jamie 2018-08-28 11:26:00 +01:00 committed by GitHub
commit 8fd3c57cb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 87 additions and 8 deletions

View file

@ -80,5 +80,9 @@ namespace Ombi.Helpers
{
return str.Replace(" ", "");
}
public static string StripCharacters(this string str, params char[] chars)
{
return string.Concat(str.Where(c => !chars.Contains(c)));
}
}
}