bugfix/sync-not-working-properly (#8168)
This commit is contained in:
@@ -47,7 +47,7 @@ export const getStaticProps: GetStaticProps<
|
||||
revalidate: 1,
|
||||
};
|
||||
} catch (error) {
|
||||
let message = "Unknown error while fetching calendarƒ";
|
||||
let message = "Unknown error while fetching calendar";
|
||||
if (error instanceof Error) message = error.message;
|
||||
console.error(error, message);
|
||||
return {
|
||||
|
||||
@@ -193,6 +193,9 @@ const getNextCache = async (username: string, month: string): Promise<EventBusyD
|
||||
)
|
||||
.then((r) => r.json())
|
||||
.then((json) => json?.pageProps?.results);
|
||||
// No need to wait for this, the purpose is to force re-validation every second as indicated
|
||||
// in page getStaticProps.
|
||||
fetch(`${baseUrl}/${username}/calendar-cache/${month}`).catch(console.log);
|
||||
} catch (e) {
|
||||
log.warn(e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user