From af351876eea4c17a9d1f8e359beccb397b2172fc Mon Sep 17 00:00:00 2001 From: Cris Silva Date: Tue, 30 Jul 2019 12:00:12 +0100 Subject: [PATCH] Fix season/episode formatting for video addons --- xbmc/filesystem/PluginDirectory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/filesystem/PluginDirectory.cpp b/xbmc/filesystem/PluginDirectory.cpp index fcc3a15e1fef9..204678e9c8f69 100644 --- a/xbmc/filesystem/PluginDirectory.cpp +++ b/xbmc/filesystem/PluginDirectory.cpp @@ -387,7 +387,7 @@ void CPluginDirectory::AddSortMethod(int handle, SORT_METHOD sortMethod, const s } case SORT_METHOD_EPISODE: { - dir->m_listItems->AddSortMethod(SortByEpisodeNumber, 20359, LABEL_MASKS("%E. %T","%R")); + dir->m_listItems->AddSortMethod(SortByEpisodeNumber, 20359, LABEL_MASKS("%H. %T", "%R")); break; } case SORT_METHOD_PRODUCTIONCODE: