Skip to content

Commit cf60036

Browse files
author
Rubens F. N. da Silva
committed
Fix usage of unavailable property
Removed the check of an authentication property which is not available. This caused the reporter manager to fail without loop through its queue.
1 parent 996f8d0 commit cf60036

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cls/Frontier/Reporter/Manager.cls

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ Method AddReporter(reporter As Frontier.Reporter) As %Status
2828
/// Iterates over the queue calling the Report method for each. Each call is implementation dependent.
2929
Method Report() As %Status [ Internal ]
3030
{
31-
set sc = $$$OK
31+
set sc = $$$OK
3232

3333
if '$isobject(..Context.Exception) return $$$OK
34-
if ..Context.AuthenticationManager.IsChallengeSet return $$$OK
3534
if ..Reported return $$$OK
3635

3736
#dim reporter As Frontier.Reporter

0 commit comments

Comments
 (0)