Jelajahi Sumber

Fix spacing issues

Joshua Boniface 5 tahun lalu
induk
melakukan
b10e06ff45
1 mengubah file dengan 3 tambahan dan 1 penghapusan
  1. 3 1
      MediaBrowser.Model/Configuration/ServerConfiguration.cs

+ 3 - 1
MediaBrowser.Model/Configuration/ServerConfiguration.cs

@@ -169,7 +169,8 @@ namespace MediaBrowser.Model.Configuration
             set
             {
                 _baseUrl = value;
-				// Normalize the start of the string
+
+                // Normalize the start of the string
                 if (string.IsNullOrWhiteSpace(_baseUrl))
                 {
                     // If baseUrl is empty, set an empty prefix string
@@ -185,6 +186,7 @@ namespace MediaBrowser.Model.Configuration
                     // If baseUrl was configured with a leading slash, just return it as-is
                     _baseUrl = _baseUrl;
                 }
+
                 // Normalize the end of the string
                 if (_baseUrl.EndsWith("/"))
                 {