avoid duplicate warning about /api/instance on checkup

master
ansuz 2022-05-30 15:34:02 +05:30
parent 066cb2377c
commit feefd9bff0
2 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,8 @@
if (/\/api\/.*/.test(src)) {
console.error("A serverside API endpoint could not be reached.", src);
// don't warn about bower if the error is the optional instance endpoint
if (/\/api\/instance/.test(src)) { return; }
}
//if (!/\/bower_components\/.*/.test(src)) { return; }

View File

@ -7,6 +7,6 @@
<body>
<div id="cp-progress"></div>
<iframe-placeholder>
<script type="text/javascript" src="/checkup/dependency-warning.js?ver=1.0.0"></script>
<script type="text/javascript" src="/checkup/dependency-warning.js?ver=1.0.1"></script>
<script data-bootload="main.js" data-main="/common/boot.js" src="/bower_components/requirejs/require.js"></script>