tradly 1.0.36 → 1.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Roots/App.js +1 -1
- package/package.json +1 -1
package/Roots/App.js
CHANGED
|
@@ -191,7 +191,7 @@ class App {
|
|
|
191
191
|
} catch (error) { return error }
|
|
192
192
|
}
|
|
193
193
|
async commonFuntion(param={path,bodyParam,authKey,Method}) {
|
|
194
|
-
try { const [error, responseJson] = await network.networkCall({path:path
|
|
194
|
+
try { const [error, responseJson] = await network.networkCall({path:param.path,method:param.Method,authKey:param.authKey});
|
|
195
195
|
if (error) { return error }
|
|
196
196
|
else { return responseJson }
|
|
197
197
|
} catch (error) { return error }
|