Skip to content

Commit

Permalink
Fix membership status in HSS
Browse files Browse the repository at this point in the history
  • Loading branch information
Lodifice committed Mar 21, 2018
1 parent e84b7f9 commit acd959a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sipa/model/hss/user.py
Expand Up @@ -253,7 +253,7 @@ def address(self):

@active_prop
def status(self):
if self.has_connection:
if self._pg_account.properties.active:
return gettext("Aktiv")
return gettext("Passiv")

Expand Down

0 comments on commit acd959a

Please sign in to comment.