Got most of the requesting stuff done! !wip #2313

This commit is contained in:
Jamie 2018-08-26 23:12:21 +01:00
commit b72905ab4a
26 changed files with 1061 additions and 61 deletions

View file

@ -75,5 +75,10 @@ namespace Ombi.Helpers
return -1;
}
public static string RemoveSpaces(this string str)
{
return str.Replace(" ", "");
}
}
}