In https://github.com/nextcloud/user_saml/blob/master/lib/Jobs/MigrateGroups.php#L89-L113 we move the group id from the local backend's table to the SAML backend's table. But the members are being ignored. They stay in oc_group_user while the new reference table after the migration is oc_user_saml_group_members. A migration might be kicked off from the login of a single users, resulting in other members "loosing" their membership until their next login.
In https://github.com/nextcloud/user_saml/blob/master/lib/Jobs/MigrateGroups.php#L89-L113 we move the group id from the local backend's table to the SAML backend's table. But the members are being ignored. They stay in
oc_group_user
while the new reference table after the migration isoc_user_saml_group_members
. A migration might be kicked off from the login of a single users, resulting in other members "loosing" their membership until their next login.