vike 0.4.259-commit-fc34c43 → 0.4.259-commit-cce07dd
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.
|
@@ -41,7 +41,7 @@ async function renderPageServerAfterRoute(pageContext) {
|
|
|
41
41
|
await execHookDataAndOnBeforeRender(pageContext);
|
|
42
42
|
}
|
|
43
43
|
catch (err) {
|
|
44
|
-
if (isSameErrorMessage(err, pageContext.errorWhileRendering)) {
|
|
44
|
+
if (!isSameErrorMessage(err, pageContext.errorWhileRendering)) {
|
|
45
45
|
logRuntimeError(err, pageContext);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
@@ -231,7 +231,7 @@ async function renderPageServerEntryRecursive_onError(err, pageContextBegin, pag
|
|
|
231
231
|
return pageContextHttpErrorFallback;
|
|
232
232
|
}
|
|
233
233
|
}
|
|
234
|
-
if (isSameErrorMessage(errErrorPage, err)) {
|
|
234
|
+
if (!isSameErrorMessage(errErrorPage, err)) {
|
|
235
235
|
logRuntimeError(errErrorPage, pageContextErrorPageInit);
|
|
236
236
|
}
|
|
237
237
|
const pageContextHttpErrorFallback = getPageContextHttpErrorFallback(err, pageContextBegin);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.259-commit-
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.259-commit-cce07dd";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Automatically updated by @brillout/release-me
|
|
2
|
-
export const PROJECT_VERSION = '0.4.259-commit-
|
|
2
|
+
export const PROJECT_VERSION = '0.4.259-commit-cce07dd';
|