updated sentry

This commit is contained in:
Steven Hugg 2020-10-31 12:04:55 -05:00
parent 9bc9992aec
commit 418a612810
2 changed files with 3 additions and 3 deletions

View File

@ -613,8 +613,8 @@ $( ".dropdown-submenu" ).click(function(event) {
<!-- Sentry error reporting -->
<script
src="https://browser.sentry-cdn.com/5.25.0/bundle.tracing.min.js"
integrity="sha384-MxPEqyePOMqaz3prq1TexMEXtfnxqvet9uhebPAm5SI4Pz3Ga9HwbmE5FY2Bah20"
src="https://browser.sentry-cdn.com/5.27.2/bundle.min.js"
integrity="sha384-+69fdGw+g5z0JJXjw46U9Ls/d9Y4Zi6KUlCcub+qIWsUoIlyimCujtv+EnTTHPTD"
crossorigin="anonymous"
></script>
<script>

View File

@ -1995,7 +1995,7 @@ function addPageFocusHandlers() {
}
});
$(window).on("orientationchange", () => {
if (platform) setTimeout(platform.resize.bind(platform), 200);
if (platform && platform.resize) setTimeout(platform.resize.bind(platform), 200);
});
}