Beta Advanced Emulator Launcher - Multi-emulator frontend for Kodi
(2024-04-11, 05:05)ixarka Wrote:
(2024-04-05, 11:01)chrisism Wrote: Post your versions of used addons too. Quickly looking at it I think you might not have set your assets path correctly for the collection. Open up your rom collection context menu and go through the menu. There is an option to set the ROM assets path (that is the main directory for all the assets for the ROMs iin that particular collection) and that is either not set or incorrect. 

Take notice, there is a big major beta release currently for AKL with lots of changes. Mixing up beta and stable releases of the addons might cause unexpected behavior.
Sorry for posting in the wrong forum!  Anyway, you helped me sort out my issue.  This rom was originally set up as a standalone rom and I couldn't figure out how to set the asset path for it.  When I created a ROM collection and set the path there, everything worked.

Although I think there is a small bug in the mobygames scraper here:
Quote:    def resolve_asset_URL(self, selected_asset, status_dic):
        # Transform http to https
        url = selected_asset['url']
        if url[0:4] == 'http':
            url = 'https' + url[4:]
        url_log = self._clean_URL_for_log(url)

        return url, url_log
If the url returns is already prefixed with https, this logic causes the returned url to say "httpss" which causes all of the downloads to fail.  Eg:
Quote:requests.exceptions.InvalidSchema: No connection adapters were found for 'httpss://cdn.mobygames.com/covers/4040161-super-mario-bros-3-nes-media.jpg'
I locally patched it to do this instead and it works great now:
Quote:if url[0:4] == 'http' and url[4] != 's':

Thanks for the update. I applied the fix and rolled it out in the RC.
Reply


Messages In This Thread
Can You create A Sub Category? - by Wild_Tom - 2020-07-13, 04:43
Crash & Lost my launchers? - by eirrocmh - 2020-11-29, 02:25
RE: Crash & Lost my launchers? - by eirrocmh - 2020-12-19, 00:19
RE: Advanced Emulator Launcher - Multi-emulator frontend for Kodi - by chrisism - 2024-04-23, 19:47
Logout Mark Read Team Forum Stats Members Help
Advanced Emulator Launcher - Multi-emulator frontend for Kodi12