Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
add defensive check to fix bug for when session is expired #4844
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Sep 8, 2020
1 parent 3ec796d commit a112a16
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -287,7 +287,7 @@ public virtual async Task<IEnumerable<string>> GetClientListAsync()

try
{
return Properties.GetClientList();
return Properties?.GetClientList() ?? Enumerable.Empty<string>();
}
catch (Exception ex)
{
Expand Down

0 comments on commit a112a16

Please sign in to comment.