Kodi Community Forum
"Loading Directory" Dialog won't go away - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26)
+--- Thread: "Loading Directory" Dialog won't go away (/showthread.php?tid=112682)



"Loading Directory" Dialog won't go away - JoeyJoeJoJo - 2011-10-18

I'm making a plugin and it's working well. The only thing is that after the script does what it's supposed to do, the "Loading Directory" dialog stays up. I can make it go away manually by pressing the cancel button, but is there a way to force it to close automatically? I've checked my log and there aren't any errors.


- JoeyJoeJoJo - 2011-10-18

I figured it out. My problem was that I was launching a class with xbmcplugin.addDirectoryItem(isfolder=True). Changing it to isfolder=False fixed the problem.