diff --git a/doc/changelog.rst b/doc/changelog.rst
index d9da9472a824e1d2c3cc6fd8f405900f2d6f121f..e3555b0ac150a2ae07c63b45be94238dda4cb4d3 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -24,7 +24,7 @@ unreleased
     - streamline digitizer functions :mr:`304`
     - add BAM average and BAM feedbacks mnemonics, Viking mnemonics :mr:`305`, :mr:`306`
     - improved function to load PES spectra :mr:`309`
-    - Gotthard-II mnemonics and pulse alignment :mr:`310`
+    - Gotthard-II mnemonics and pulse alignment :mr:`310`, :mr:`311`
 
 - **New Features**
 
diff --git a/src/toolbox_scs/detectors/gotthard2.py b/src/toolbox_scs/detectors/gotthard2.py
index bf2988cafbcaf050b7e17f98cbf8fe99d16a5545..4ff9366c36dd616783cc2910f91a69cc61052e9f 100644
--- a/src/toolbox_scs/detectors/gotthard2.py
+++ b/src/toolbox_scs/detectors/gotthard2.py
@@ -53,7 +53,7 @@ def extract_GH2(ds, run, firstFrame=0, bunchPattern='scs_ppl',
         pattern = XrayPulses(run)
         dim = 'sa3_pId'
     others = [var for var in ds if dim in ds[var].coords]
-    nds = ds.drop_dims(dim)
+    nds = ds.drop_dims(dim, errors='ignore')
     if pattern.is_constant_pattern():
         pulse_ids = pattern.peek_pulse_ids(labelled=False)
         nds = nds.isel({gh2_dim: pulse_ids + firstFrame})