]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Don't display error messages when second scheduled rc command fails
[rails.git] / app / assets / javascripts / index.js
index 0fa85a0cc09295177fa1a7d3b8c9a62e742c61b4..6e3e3cea2feb1b6bcb2b8f652158324454c4dcc8 100644 (file)
@@ -241,15 +241,15 @@ $(document).ready(function () {
         const noteQuery = new URLSearchParams({ url: osmHost + OSM.apiUrl(object) });
         sendRemoteEditCommand(remoteEditHost + "/import?" + noteQuery);
       }
+    }, function () {
+      // eslint-disable-next-line no-alert
+      alert(I18n.t("site.index.remote_failed"));
     });
 
-    function sendRemoteEditCommand(url, callback) {
+    function sendRemoteEditCommand(url, callback, errorCallback) {
       fetch(url, { mode: "no-cors", signal: AbortSignal.timeout(5000) })
         .then(callback)
-        .catch(function () {
-          // eslint-disable-next-line no-alert
-          alert(I18n.t("site.index.remote_failed"));
-        });
+        .catch(errorCallback);
     }
 
     return false;