From 121725390da59ebe54f49972fe40c9ed1b3d3fec Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Mon, 6 Jul 2020 12:50:43 -0300 Subject: [PATCH] Fix _addons/ URL prefix not being removed on Windows systems Anki 2.1.28 Beta https://forums.ankiweb.net/t/anki-2-1-28-beta/629/26 > Did the requirements on how to expose resources on the internal server change? Because scripts, css files and the like, registered with setWebExports, do not work anymore with beta2. > A look at the console shows the following for all resources: > Failed to load resource: the server responded with a status of 500 (INTERNAL SERVER ERROR) **\Anki2\addons21\someaddon\__init__.py** ```py from aqt import mw import aqt # assuming add-on folder is named "test" # and assuming a 'test.js' is in the same folder addon_id = "someaddon" port = mw.mediaServer.getPort() mw.addonManager.setWebExports(addon_id, ".*\\.js$") print("Hello") aqt.editor._html += f""" """ ``` --- qt/aqt/mediasrv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/aqt/mediasrv.py b/qt/aqt/mediasrv.py index 680495408..df03e34d5 100644 --- a/qt/aqt/mediasrv.py +++ b/qt/aqt/mediasrv.py @@ -179,7 +179,7 @@ def _redirectWebExports(path): return _exportFolder, addonPath try: - addon, subPath = addonPath.split(os.path.sep, 1) + addon, subPath = addonPath.split("/", 1) except ValueError: return addMgr.addonsFolder(), path if not addon: