[PATCH luci] luci-base: don't append object.method to the RPC url

Rafał Miłecki zajec5 at gmail.com
Wed Sep 23 07:57:30 EDT 2020


From: Rafał Miłecki <rafal at milecki.pl>

It was a cosmetic feature that doesn't work anymore with the latest
uhttpd ubus API. Adding RESTful API resulted in treating URL part
following the /ubus/ as the new API request.
---
 modules/luci-base/htdocs/luci-static/resources/rpc.js | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/modules/luci-base/htdocs/luci-static/resources/rpc.js b/modules/luci-base/htdocs/luci-static/resources/rpc.js
index 7bfc91336..f37f7bb6a 100644
--- a/modules/luci-base/htdocs/luci-static/resources/rpc.js
+++ b/modules/luci-base/htdocs/luci-static/resources/rpc.js
@@ -33,9 +33,6 @@ return baseclass.extend(/** @lends LuCI.rpc.prototype */ {
 						req[i].params[2]
 					);
 		}
-		else if (req.params) {
-			q += '/%s.%s'.format(req.params[1], req.params[2]);
-		}
 
 		return request.post(rpcBaseURL + q, req, {
 			timeout: (L.env.rpctimeout || 20) * 1000,
-- 
2.27.0




More information about the openwrt-devel mailing list