From 96a3a9d02373c4196502e0f0b74c4d9c68dd1888 Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Tue, 14 Feb 2023 21:35:40 +0100
Subject: [PATCH] fix: missing argument of the function read

---
 application/source/data/datasource/server/restapi.mjs | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/application/source/data/datasource/server/restapi.mjs b/application/source/data/datasource/server/restapi.mjs
index 47aa3f4b5..d7ffd97cd 100644
--- a/application/source/data/datasource/server/restapi.mjs
+++ b/application/source/data/datasource/server/restapi.mjs
@@ -12,8 +12,6 @@ import { WriteError } from "./restapi/writeerror.mjs";
 
 export { RestAPI };
 
-
-
 /**
  * @type {symbol}
  * @memberOf Monster
@@ -133,7 +131,7 @@ class RestAPI extends Server {
             self.set(self.transformServerPayload.call(self, obj));
         };
         
-        return fetchData.call(this, "read", callback);
+        return fetchData.call(this, init,"read", callback);
     }
 
     /**
-- 
GitLab