From 235125df5751cc95782a0a3913ee71c9aba8c896 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Sat, 19 Jan 2019 21:41:48 -0500 Subject: [PATCH] Fix ApplicationUserAgent documentation --- Emby.Server.Implementations/ApplicationHost.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index d0b5c15970..97df873779 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -432,9 +432,9 @@ namespace Emby.Server.Implementations public string ApplicationVersion => typeof(ApplicationHost).Assembly.GetName().Version.ToString(3); /// - /// Gets the current application server version + /// Gets the current application user agent /// - /// The application server version. + /// The application user agent. public string ApplicationUserAgent => Name.Replace(' ','-') + "/" + ApplicationVersion; private string _productName;