From c4da482c3f2b4020c8afe1deeecc64cc8046ce18 Mon Sep 17 00:00:00 2001 From: Libitum Date: Thu, 20 Feb 2020 14:44:44 +0800 Subject: [PATCH] Fix typo in the code --- Jellyfin.Plugin.Douban/MovieProvider.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jellyfin.Plugin.Douban/MovieProvider.cs b/Jellyfin.Plugin.Douban/MovieProvider.cs index 4b4e929..d8f81e3 100644 --- a/Jellyfin.Plugin.Douban/MovieProvider.cs +++ b/Jellyfin.Plugin.Douban/MovieProvider.cs @@ -38,11 +38,11 @@ public async Task> GetMetadata(MovieInfo info, { _logger.LogInformation($"Douban:GetMetadata movie name: {info.Name}"); - // Only handle it when launguage is "zh" + // Only handle it when language is "zh" if (info.MetadataLanguage != "zh") { - _logger.LogInformation("DoubanProvider: the required " + - "launguage is not zh, so just bypass DoubanProvider"); + _logger.LogInformation("DoubanProvider: the required " + + "language is not zh, so just bypass DoubanProvider"); return new MetadataResult(); } @@ -78,11 +78,11 @@ public async Task> GetSearchResults( var results = new List(); - // Only handle it when launguage is "zh" + // Only handle it when language is "zh" if (info.MetadataLanguage != "zh") { - _logger.LogInformation("DoubanProvider: the required " + - "launguage is not zh, so just bypass DoubanProvider"); + _logger.LogInformation("DoubanProvider: the required " + + "language is not zh, so just bypass DoubanProvider"); return results; }