]> git.openstreetmap.org Git - rails.git/commitdiff
Don't display error messages when second scheduled rc command fails
authorAnton Khorev <tony29@yandex.ru>
Tue, 25 Oct 2022 08:45:43 +0000 (11:45 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sun, 16 Feb 2025 22:37:37 +0000 (01:37 +0300)
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;