Skip to content

Commit

Permalink
Fix retrieving client Rf session state
Browse files Browse the repository at this point in the history
Also adds regression tests

Fixes #94
  • Loading branch information
ammendonca committed Jun 1, 2017
1 parent f6017e4 commit 7cb43e8
Show file tree
Hide file tree
Showing 2 changed files with 181 additions and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ private void cancelInterimTimer() {
@Override
@SuppressWarnings("unchecked")
public <E> E getState(Class<E> eClass) {
return eClass == ClientRfSessionState.class ? (E) this.sessionData.getTsTimerId() : null;
return eClass == ClientRfSessionState.class ? (E) this.sessionData.getClientRfSessionState() : null;
}

@Override
Expand Down
Loading

0 comments on commit 7cb43e8

Please sign in to comment.