On 14.09.2020 18:31, Rafał Miłecki wrote:
@@ -2553,10 +2553,19 @@ rpcBaseURL = Session.getLocalData('rpcBaseURL');if (rpcBaseURL == null) {+ var msg = { + jsonrpc: '2.0', + id: 'init', + method: 'list', + params: undefined + }; + var options = { + nobatch: true + }; var rpcFallbackURL = this.url('admin/ubus');- rpcBaseURL = Request.get(env.ubuspath).then(function(res) {- return (rpcBaseURL = (res.status == 400) ? env.ubuspath : rpcFallbackURL); + rpcBaseURL = Request.post(env.ubuspath, msg, options).then(function(res) { + return (rpcBaseURL = res.status == 200 ? env.ubuspath : rpcFallbackURL);
Pushing with "options" variable object inlined. _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
