Skip to content

Commit d29b1df

Browse files
committed
fix: restored proper variables for logging
1 parent ca0817f commit d29b1df

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

html_export/static/bootstrap.js

+12-14
Original file line numberDiff line numberDiff line change
@@ -414,13 +414,12 @@ window.GDQUEST = ((/** @type {GDQuestLib} */ GDQUEST) => {
414414
const { width, height } = screen;
415415
const { innerHeight, innerWidth } = window;
416416
const {
417-
github_repository,
418-
github_workflow,
419-
github_ref_name,
420-
github_sha,
421-
override_file,
422-
sub_build_path,
423-
watermark,
417+
build_date,
418+
build_date_iso,
419+
build_date_unix,
420+
git_branch,
421+
git_commit,
422+
version,
424423
} = GDQUEST_ENVIRONMENT || {};
425424
const data = {
426425
userAgent,
@@ -429,13 +428,12 @@ window.GDQUEST = ((/** @type {GDQuestLib} */ GDQUEST) => {
429428
height,
430429
innerHeight,
431430
innerWidth,
432-
github_repository,
433-
github_workflow,
434-
github_ref_name,
435-
github_sha,
436-
override_file,
437-
sub_build_path,
438-
watermark,
431+
build_date,
432+
build_date_iso,
433+
build_date_unix,
434+
git_branch,
435+
git_commit,
436+
version,
439437
...additionalData,
440438
};
441439
makeLogFunction(LEVELS.TRACE)(data, `INIT`);

0 commit comments

Comments
 (0)