2025-04-22, 02:04 PM
(This post was last modified: 2025-04-22, 02:06 PM by pulpul. Edited 1 time in total.)
(2025-04-22, 01:42 PM)TheDreadPirate Wrote: If I had to guess, probably the "/system/info/public" endpoint.
I don't have an unstable build going at the moment, though I plan on standing one up soon.
I browsed the webos client source and figured it out, lol.
The nightly build for some reason is missing the manifest.json, which webos client tries to get. I added it from the stable build and it works.
Code:
function getManifest(baseurl) {
curr_req = ajax.request(normalizeUrl(baseurl + "/web/manifest.json"), {
method: "GET",
success: function (data) {
handleSuccessManifest(data, baseurl);
},
error: handleFailure,
abort: handleAbort,
timeout: 5000
});
}