aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorAnthony Lavado <anthony@lavado.ca>2020-11-02 11:10:39 -0500
committerGitHub <noreply@github.com>2020-11-02 11:10:39 -0500
commit6205fb4b6a1208fadd93ef1d43668657db531768 (patch)
tree8590affcc8a1510e1dd5658cc993c49cd5a7ac89 /Emby.Server.Implementations/ApplicationHost.cs
parentf23836c6a4fea1bfafd304aaaae030cd3789dd72 (diff)
parent5a9c218324bdd06073370c8ecfcb09a1fc7784b2 (diff)
Merge pull request #4341 from Bond-009/minor6
Minor improvements
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 31ca738296..58edbe9878 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -339,7 +339,7 @@ namespace Emby.Server.Implementations
/// Gets the email address for use within a comment section of a user agent field.
/// Presently used to provide contact information to MusicBrainz service.
/// </summary>
- public string ApplicationUserAgentAddress { get; } = "team@jellyfin.org";
+ public string ApplicationUserAgentAddress => "team@jellyfin.org";
/// <summary>
/// Gets the current application name.
@@ -403,7 +403,7 @@ namespace Emby.Server.Implementations
/// <summary>
/// Resolves this instance.
/// </summary>
- /// <typeparam name="T">The type</typeparam>
+ /// <typeparam name="T">The type.</typeparam>
/// <returns>``0.</returns>
public T Resolve<T>() => ServiceProvider.GetService<T>();