Skip to content
Snippets Groups Projects
Verified Commit 96a3a9d0 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: missing argument of the function read

parent 95fb8dc1
Branches
Tags
No related merge requests found
...@@ -12,8 +12,6 @@ import { WriteError } from "./restapi/writeerror.mjs"; ...@@ -12,8 +12,6 @@ import { WriteError } from "./restapi/writeerror.mjs";
export { RestAPI }; export { RestAPI };
/** /**
* @type {symbol} * @type {symbol}
* @memberOf Monster * @memberOf Monster
...@@ -133,7 +131,7 @@ class RestAPI extends Server { ...@@ -133,7 +131,7 @@ class RestAPI extends Server {
self.set(self.transformServerPayload.call(self, obj)); self.set(self.transformServerPayload.call(self, obj));
}; };
return fetchData.call(this, "read", callback); return fetchData.call(this, init,"read", callback);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment