Kodi Community Forum

Full Version: Stacking not working after update to 9.11
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I was running 9.04 in portable mode and I just upgraded to 9.11
I choosed to install 9.11 in portable mode, just like 9.04
The installation went fine but when I start XBMC, it updates the library by adding each splitted movie part as a new movie...
As a result, I get 3 entries per movie:
- a stacked entry (Which was made by 9.04)
- an entry for My.Movie-Cd1.avi
- an entry for My.Movie-Cd2.avi

The advancedsettings.xml file seems to be identical to the one I had in 9.04
<advancedsettings>
<moviestacking append="no">
<regexp>[ _\.-]+cd[ _\.-]*([0-9a-d]+)</regexp>
<regexp>[ _\.-]+dvd[ _\.-]*([0-9a-d]+)</regexp>
<regexp>[ _\.-]+part[ _\.-]*([0-9a-d]+)</regexp>
</moviestacking>
</advancedsettings>

I could not find any similar post in the forum.
Can anyone help me?
The stacking regular expressions changed. You should check the wiki for the correct format and then re-create the expressions you need for your naming scheme. The new expression system expects exactly 4 capture expressions.
You were right! I updated the advancedsettings.xml file and the stacking now works just as good as under 9.04.

Thx for answering so fast.