diff --git a/examples/api/crack.py b/examples/api/crack.py
index f5f72e43f172fb2da22848e4f915fbba368b1baa..9082ea28b36df05c36d6a36d0a20bb89db0f982e 100644
--- a/examples/api/crack.py
+++ b/examples/api/crack.py
@@ -31,6 +31,7 @@ gmsh.model.addPhysicalGroup(1, new_lines, 101)
 gmsh.model.mesh.generate(2)
 
 gmsh.plugin.setNumber("Crack", "PhysicalGroup", 101)
+# gmsh.plugin.setNumber("Crack", "DebugView", 1)
 gmsh.plugin.run("Crack")
 
 # save all the elements in the mesh (even those that do not belong to any
diff --git a/examples/api/crack3d.py b/examples/api/crack3d.py
index 2f997e5b8930f2499146e7f347abe9688ee8f934..f98166287c62ee3b610fb983685f2f107bb62d83 100644
--- a/examples/api/crack3d.py
+++ b/examples/api/crack3d.py
@@ -28,6 +28,7 @@ gmsh.model.mesh.generate(3)
 # "crack" the mesh by duplicating the elements and nodes on the small surface
 gmsh.plugin.setNumber("Crack", "Dimension", 2)
 gmsh.plugin.setNumber("Crack", "PhysicalGroup", phys)
+#gmsh.plugin.setNumber("Crack", "DebugView", 1)
 gmsh.plugin.run("Crack")
 
 # save all the elements in the mesh (even those that do not belong to any
diff --git a/src/plugin/Crack.cpp b/src/plugin/Crack.cpp
index 694ebfb02775e30b2ca557659d87b29fb82ed650..56511eb8ddbea27324651626039f23c6d0e7cfab 100644
--- a/src/plugin/Crack.cpp
+++ b/src/plugin/Crack.cpp
@@ -211,8 +211,11 @@ PView *GMSH_CrackPlugin::execute(PView *view)
   for(auto it = bndVertices.begin(); it != bndVertices.end(); it++)
     crackVertices.erase(*it);
 
-  // compute elements on one side of the crack
-  std::set<MElement *> oneside;
+  // compute elements on the positive side of the crack, and keep track of each
+  // node in the element that leads to categorizing the element on this side
+  // (this allows to handle the degenerate case where the same element touches
+  // the same crack on both sides, with different nodes - cf. #1750)
+  std::map<MElement *, std::vector<std::size_t> > oneside;
   std::vector<GEntity *> allentities;
   m->getEntities(allentities);
   for(std::size_t ent = 0; ent < allentities.size(); ent++) {
@@ -229,7 +232,6 @@ PView *GMSH_CrackPlugin::execute(PView *view)
         // connected crack elements, we consider the element lies on the
         // "positive side" of the crack
         SPoint3 b = e->barycenter();
-        bool found = false;
         for(auto ce : it->second) {
           SVector3 dv = SVector3(b, ce->barycenter());
           SVector3 n;
@@ -238,20 +240,24 @@ PView *GMSH_CrackPlugin::execute(PView *view)
           else
             n = ce->getFace(0).normal();
           if(dot(n, dv) < 0) {
-            oneside.insert(e);
-            found = true;
-            break;
+            auto it2 = oneside.find(e);
+            if(it2 == oneside.end())
+              oneside[e] = {j};
+            else {
+              if(std::find(it2->second.begin(), it2->second.end(), j) ==
+                 it2->second.end())
+                it2->second.push_back(j);
+            }
           }
         }
-        if(found) break; // we're done for the element
       }
     }
   }
 
   if(debug) {
     std::map<int, std::vector<double> > d;
-    for(auto e : oneside) d[e->getNum()] = {(double)e->getNum()};
-    view = new PView("Elements on one side of crack", "ElementData",
+    for(auto e : oneside) d[e.first->getNum()] = {(double)e.first->getNum()};
+    view = new PView("Elements on positive side of crack", "ElementData",
                      GModel::current(), d);
   }
 
@@ -316,14 +322,16 @@ PView *GMSH_CrackPlugin::execute(PView *view)
 
   // replace vertices in elements on one side of the crack
   for(auto it = oneside.begin(); it != oneside.end(); it++) {
-    MElement *e = *it;
-    for(std::size_t i = 0; i < e->getNumVertices(); i++) {
-      if(vxv.count(e->getVertex(i))) e->setVertex(i, vxv[e->getVertex(i)]);
+    MElement *e = it->first;
+    for(auto i : it->second) {
+      MVertex *v = e->getVertex(i);
+      if(vxv.count(v))
+        e->setVertex(i, vxv[v]);
+      else
+        Msg::Warning("Mesh node %lu not found in cracked nodes", v->getNum());
     }
   }
 
-  // m->pruneMeshVertexAssociations();
-
   CTX::instance()->mesh.changed = ENT_ALL;
 
   return view;