Skip to content

Commit

Permalink
Merge branch 'steam-beta'
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Oct 10, 2024
2 parents f26b99c + 6241732 commit aaf215d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/steam/1-prepare-steam-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Clean up pre-existing files
rm -rf SteamSDK
# Unzip the SteamWorks SDK
unzip scripts/steam/lib/steamworks_sdk_159.zip -d SteamSDK
unzip scripts/steam/lib/steamworks_sdk_160.zip -d SteamSDK
# Create Depot folders
mkdir -p SteamSDK/sdk/tools/ContentBuilder/content/Win64
mkdir -p SteamSDK/sdk/tools/ContentBuilder/content/Win64_CN
Expand Down
Binary file not shown.
8 changes: 7 additions & 1 deletion src-ui/app/services/telemetry.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,15 @@ export class TelemetryService {
});

window.addEventListener('error', (e) => {
this.trackEvent('ui_js_error', {
const errorData = JSON.stringify({
filename: e.filename,
lineno: e.lineno,
colno: e.colno,
message: e.message,
});
this.trackEvent('ui_js_error', {
errorData,
});
});
}

Expand Down

0 comments on commit aaf215d

Please sign in to comment.