From 6b6e38ab5a5f093344165747b4d9c3e8cf9d105c Mon Sep 17 00:00:00 2001 From: zvon Date: Thu, 17 Jan 2019 17:26:19 +0100 Subject: [PATCH] Actually call the right function --- functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.cpp b/functions.cpp index ac6c1da..54b8941 100644 --- a/functions.cpp +++ b/functions.cpp @@ -108,7 +108,7 @@ void findSeasons(std::map> &seasons, const std::strin size_t season_pos{std::string::npos}; // season_pos - position of first digit of the season for( const auto p: FSLib::Directory(path) ) { if(FSLib::isDirectory(path + "/" + p)) { - iterateFS(seasons, path + "/" + p); + findSeasons(seasons, path + "/" + p, season_numbers); continue; }