This commit is contained in:
Andrew Nicols 2022-04-12 09:46:48 +08:00
commit 01b8e81e7d
3 changed files with 6 additions and 8 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -87,14 +87,12 @@ const fetchTour = async tourId => {
const pendingPromise = new Pending(`admin_usertour_fetchTour:${tourId}`);
try {
// If we don't have any tour config (because it doesn't need showing for the current user), return early.
const response = await tourRepository.fetchTour(tourId);
if (!response.hasOwnProperty('tourconfig')) {
pendingPromise.resolve();
if (response.hasOwnProperty('tourconfig')) {
const {html} = await Templates.renderForPromise('tool_usertours/tourstep', response.tourconfig);
startBootstrapTour(tourId, html, response.tourconfig);
}
const {html} = await Templates.renderForPromise('tool_usertours/tourstep', response.tourconfig);
startBootstrapTour(tourId, html, response.tourconfig);
pendingPromise.resolve();
} catch (error) {
pendingPromise.resolve();