Fix FLEXIAPI-377 Don't reset authInfoIndex in the Provisioning

This commit is contained in:
Timothée Jaussoin 2025-09-01 10:23:40 +02:00
parent abe67c9734
commit 38f0120ecc
2 changed files with 1 additions and 1 deletions

View file

@ -9,6 +9,7 @@ v2.1
- Fix FLEXIAPI-376 Rename domain to realm in CardDav credentials - Fix FLEXIAPI-376 Rename domain to realm in CardDav credentials
- Fix FLEXIAPI-375 Fix VcardsStorage table UUID size, recover the UUID from the stored vCard - Fix FLEXIAPI-375 Fix VcardsStorage table UUID size, recover the UUID from the stored vCard
- Fix FLEXIAPI-378 Return a valid JSON containing the vCard and not the raw vCard in VcardsStorage controller - Fix FLEXIAPI-378 Return a valid JSON containing the vCard and not the raw vCard in VcardsStorage controller
- Fix FLEXIAPI-377 Don't reset authInfoIndex in the Provisioning
v2.0 v2.0
---- ----

View file

@ -289,7 +289,6 @@ class ProvisioningController extends Controller
} }
$passwords = $account->passwords()->get(); $passwords = $account->passwords()->get();
$authInfoIndex = 0;
foreach ($passwords as $password) { foreach ($passwords as $password) {
$section = $xpath->query("//section[@name='auth_info_" . $authInfoIndex . "']")->item(0); $section = $xpath->query("//section[@name='auth_info_" . $authInfoIndex . "']")->item(0);