mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 21:33:15 -07:00
Merge branch 'develop' into feature/lidarr
This commit is contained in:
commit
8fd3c57cb7
10 changed files with 87 additions and 8 deletions
|
@ -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)));
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue