@webqit/webflo 0.8.73 → 0.8.74
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/package.json
CHANGED
|
@@ -67,7 +67,6 @@ export default function(layout, params) {
|
|
|
67
67
|
// Render
|
|
68
68
|
// --------
|
|
69
69
|
const data = response instanceof clientNavigationEvent.Response ? await response.data() : response;
|
|
70
|
-
console.log('----------------data', data);
|
|
71
70
|
await router.route('render', clientNavigationEvent, data, async function(event, data) {
|
|
72
71
|
// --------
|
|
73
72
|
// OOHTML would waiting for DOM-ready in order to be initialized
|
|
@@ -229,7 +229,7 @@ export async function run(hostSetup, request, response, Ui, flags = {}, protocol
|
|
|
229
229
|
};
|
|
230
230
|
const serverNavigationEvent = new NavigationEvent(
|
|
231
231
|
new NavigationEvent.Request(fullUrl, requestInit),
|
|
232
|
-
_sessionFactory('_session', { duration: 60 * 60 }).get(),
|
|
232
|
+
_sessionFactory('_session', { duration: 60 * 60, activeDuration: 60 * 60 }).get(),
|
|
233
233
|
_sessionFactory
|
|
234
234
|
);
|
|
235
235
|
|