mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
Added Auth, startup options to UI
Added caching to ConfigFileProvider,
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
namespace NzbDrone.Common
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
namespace NzbDrone.Common
|
||||
{
|
||||
public static class StringExtension
|
||||
{
|
||||
@@ -13,5 +16,10 @@
|
||||
{
|
||||
return ((object)target).NullSafe().ToString();
|
||||
}
|
||||
|
||||
public static string FirstCharToUpper(this string input)
|
||||
{
|
||||
return input.First().ToString().ToUpper() + String.Join("", input.Skip(1));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user