We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pvr.iptvsimple/src/iptvsimple/data/MediaEntry.cpp
Line 293 in a5f312c
I don't want them grouped by seasons and this should allow that:
src/iptvsimple/data/MediaEntry.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/iptvsimple/data/MediaEntry.cpp b/src/iptvsimple/data/MediaEntry.cpp index b01df07..606e6e0 100644 --- a/src/iptvsimple/data/MediaEntry.cpp +++ b/src/iptvsimple/data/MediaEntry.cpp @@ -307,6 +307,10 @@ void MediaEntry::UpdateTo(kodi::addon::PVRRecording& left, bool isInVirtualMedia newDirectory = StringUtils::Format("%s%s/%s/", newDirectory.c_str(), m_folderTitle.c_str(), seasonText.c_str()); } } + else + { + newDirectory = StringUtils::Format("%s%s/", newDirectory.c_str(), m_folderTitle.c_str()); + } } left.SetDirectory(newDirectory);
Before (with "Group entries by season" checked. If it's unchecked, no group is created):
After (with "Group entries by season" unchecked):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
pvr.iptvsimple/src/iptvsimple/data/MediaEntry.cpp
Line 293 in a5f312c
I don't want them grouped by seasons and this should allow that:
Before (with "Group entries by season" checked. If it's unchecked, no group is created):
After (with "Group entries by season" unchecked):
The text was updated successfully, but these errors were encountered: