See renoise/xrnx/Libraries/renoise/http/url.lua line 17:
class 'URL'
-----------------------------------------------------------------------------
-- Module version
-----------------------------------------------------------------------------
_VERSION = "URL 1.0.1" --[[ _G._VERSION is redefined here ]]--
Fix
Remove line 17 from renoise/http/url.lua
No other bundled scripts use this variation _VERSION, as it was never declared as a module("URL")
Test
Executing the following script in
TestPad.lua
throws an error_VERSION is "URL 1.0.1"
TestPad.lua
:Expected
_VERSION
must remain as-isLua 5.1
whenrequire
-ingrenoise.http.url
, thus no assertion failure should occur:TestPad.lua
:Caused by
See
renoise/xrnx/Libraries/renoise/http/url.lua
line 17:Fix
renoise/http/url.lua
module("URL")