Skip to content
This repository was archived by the owner on Sep 19, 2022. It is now read-only.

Commit 9e251b3

Browse files
Merge pull request #73 from pajavyskocil/fix_aup
Fixed the bug in getting new aups to sign
2 parents 7e01b08 + 5a48ddb commit 9e251b3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
1414

1515
#### Fixed
1616
- Fixed the bug in 'getEntitylesAttribute' function to return correct value of Entityless attribute
17+
- Fixed the bug in getting new aups to sign
1718

1819
## [v3.3.0]
1920
#### Added

lib/Auth/Process/ForceAup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public function process(&$request)
181181
$userLatestAup = $this->getLatestAup($userAupsList);
182182

183183
if ($latest_aup->date === $userLatestAup->date) {
184-
break;
184+
continue;
185185
}
186186
}
187187
$newAups[$requiredAup] = $latest_aup;
@@ -198,7 +198,7 @@ public function process(&$request)
198198
$userLatestAup = $this->getLatestAup($userAupsList);
199199

200200
if ($latest_aup->date === $userLatestAup->date) {
201-
break;
201+
continue;
202202
}
203203
}
204204

0 commit comments

Comments
 (0)