diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c0351639f9326d0330aa46932e5504e6478a11f4..fbf02ae17d59e3e877ec8766e0db3051120da5ef 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ image: docker:20.10.9
 
 variables:
   DOCKER_TLS_CERTDIR: "/certs"
-  IMAGE_VER: 0.11.3
+  IMAGE_VER: 0.11.4
 
 services:
   - docker:20.10.9-dind
diff --git a/cf2022.conf b/cf2022.conf
index 8743c8ec98c225bb3711ea4f3042e28690b04a45..9e291f9f3db1f107a1d7ceca4de59c49a9207113 100644
--- a/cf2022.conf
+++ b/cf2022.conf
@@ -10,5 +10,7 @@
   pretix_qid_sso        => 29, # identifikator otazky SSO UID
   pretix_qid_region     => 8, # identifikator otazky Kraj
   pretix_qid_photo      => 28, # identifikator otazky Foto
+  pretix_product_member => 1, # produkt pro cleny (NEMAPOVANY!)
+  pretix_product_regp   => 2, # produkt pro regp (NEMAPOVANY!)
   mail_domain           => 'pirati.cz',
 }
diff --git a/lib/CF2022/Helpers/Auth.pm b/lib/CF2022/Helpers/Auth.pm
index da31c9f9361be0bf030232e2d178f54ed8ad4cb6..f6206b63cf2704e76519afcd8d3329c834db8d8e 100644
--- a/lib/CF2022/Helpers/Auth.pm
+++ b/lib/CF2022/Helpers/Auth.pm
@@ -83,7 +83,7 @@ sub register ( $class, $self, $conf) {
                 my $role = ( $2 eq 'f') ? 'member':'regp';
 
                 my $region = $c->oauth_groups->{ $group };
-                $region =~ s/^KS\s+//i;
+                $region =~ s/^K[SF]\s+//i;
 
                 return {
                     region => $region,